[Java] rename config ray.redis.address to ray.address (#10772)

Resolved Conflicts:
        java/test.sh
This commit is contained in:
Hao Chen
2020-09-15 11:13:19 +08:00
committed by Barak Michener
parent 3205119ccb
commit 96ab025e66
12 changed files with 20 additions and 20 deletions
+1 -1
View File
@@ -57,7 +57,7 @@ case "${OSTYPE}" in
*) echo "Can't get ip address for ${OSTYPE}"; exit 1;;
esac
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"\
RAY_BACKEND_LOG_LEVEL=debug java -cp bazel-bin/java/all_tests_deploy.jar -Dray.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
popd