Remove public facing references to --redis-address. (#6631)

This commit is contained in:
Robert Nishihara
2019-12-31 13:21:53 -08:00
committed by GitHub
parent 1cb335487e
commit d2c6457832
24 changed files with 39 additions and 43 deletions
+1 -1
View File
@@ -380,7 +380,7 @@ def test_calling_start_ray_head(call_ray_stop_only):
# Test starting Ray with invalid arguments.
with pytest.raises(subprocess.CalledProcessError):
subprocess.check_output(
["ray", "start", "--head", "--redis-address", "127.0.0.1:6379"])
["ray", "start", "--head", "--address", "127.0.0.1:6379"])
subprocess.check_output(["ray", "stop"])
# Test --block. Killing a child process should cause the command to exit.