[1.0] Remove args from ray start (#10659)

Resolved Conflicts:
        java/test.sh
        python/ray/tests/test_multi_node.py
This commit is contained in:
Alex Wu
2020-09-18 16:41:23 -07:00
committed by Barak Michener
parent 4b58557309
commit 5bbfc548c1
7 changed files with 45 additions and 164 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ case "${OSTYPE}" in
darwin*) ip=$(ipconfig getifaddr en0);;
*) echo "Can't get ip address for ${OSTYPE}"; exit 1;;
esac
RAY_BACKEND_LOG_LEVEL=debug ray start --head --redis-port=6379 --redis-password=123456 --code-search-path="$PWD/bazel-bin/java/all_tests_deploy.jar"
RAY_BACKEND_LOG_LEVEL=debug ray start --head --port=6379 --redis-password=123456 --code-search-path="$PWD/bazel-bin/java/all_tests_deploy.jar"
RAY_BACKEND_LOG_LEVEL=debug java -cp bazel-bin/java/all_tests_deploy.jar -Dray.redis.address="$ip:6379"\
-Dray.redis.password='123456' -Dray.job.code-search-path="$PWD/bazel-bin/java/all_tests_deploy.jar" io.ray.test.MultiDriverTest
ray stop