Remove the '--include-java' option (#10594)

This commit is contained in:
Kai Yang
2020-09-09 17:01:17 +08:00
committed by GitHub
parent ccf27a9ad2
commit afa0216280
17 changed files with 40 additions and 69 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ from ray.streaming import StreamingContext
def test_word_count():
ray.init(_load_code_from_local=True, _include_java=True)
ray.init(_load_code_from_local=True)
ctx = StreamingContext.Builder() \
.build()
ctx.read_text_file(__file__) \
@@ -23,7 +23,7 @@ def test_word_count():
def test_simple_word_count():
ray.init(_load_code_from_local=True, _include_java=True)
ray.init(_load_code_from_local=True)
ctx = StreamingContext.Builder() \
.build()
sink_file = "/tmp/ray_streaming_test_simple_word_count.txt"