mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00
[Java] Enable skipped direct call cases (#7363)
* Comment out * Refine * Revert
This commit is contained in:
parent
7c174d0ffe
commit
7a33a6ea3c
2 changed files with 0 additions and 5 deletions
|
@ -61,8 +61,6 @@ public class CrossLanguageInvocationTest extends BaseMultiLanguageTest {
|
|||
|
||||
@Test
|
||||
public void testCallingPythonActor() {
|
||||
// Python worker doesn't support direct call yet.
|
||||
TestUtils.skipTestIfDirectActorCallEnabled();
|
||||
RayPyActor actor = Ray.createPyActor(PYTHON_MODULE, "Counter", "1".getBytes());
|
||||
RayObject res = Ray.callPy(actor, "increase", "1".getBytes());
|
||||
Assert.assertEquals(res.get(), "2".getBytes());
|
||||
|
|
|
@ -120,9 +120,6 @@ public class FailureTest extends BaseTest {
|
|||
@Test
|
||||
public void testActorProcessDying() {
|
||||
TestUtils.skipTestUnderSingleProcess();
|
||||
// This test case hangs if the worker to worker connection is implemented with grpc.
|
||||
// TODO (kfstorm): Should be fixed.
|
||||
TestUtils.skipTestIfDirectActorCallEnabled();
|
||||
RayActor<BadActor> actor = Ray.createActor(BadActor::new, false);
|
||||
try {
|
||||
actor.call(BadActor::badMethod2).get();
|
||||
|
|
Loading…
Add table
Reference in a new issue