[Java] Build Java code with Bazel (#4284)

This commit is contained in:
Ruifang Chen
2019-03-22 14:30:05 +08:00
committed by Hao Chen
parent 4b8b703561
commit 59d74d5e92
24 changed files with 762 additions and 237 deletions
@@ -37,12 +37,12 @@ public class ClientExceptionTest extends BaseTest {
Ray.wait(ImmutableList.of(notExisting), 1, 2000);
Assert.fail("Should not reach here");
} catch (RayException e) {
LOGGER.debug(String.format("Expected runtime exception: {}", e));
LOGGER.debug("Expected runtime exception: {}", e);
}
try {
thread.join();
} catch (Exception e) {
LOGGER.error(String.format("Excpetion caught: {}", e));
LOGGER.error("Excpetion caught: {}", e);
}
}
}