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

This commit is contained in:
Alex Wu
2020-09-18 16:41:23 -07:00
committed by GitHub
parent cd7351f6a3
commit 9a07c7b963
7 changed files with 36 additions and 154 deletions
@@ -402,7 +402,7 @@ public class RunManager {
cmd.add("--node-ip-address=" + rayConfig.nodeIp);
cmd.add("--object-store-name=" + rayConfig.objectStoreSocketName);
cmd.add("--raylet-name=" + rayConfig.rayletSocketName);
cmd.add("--redis-address=" + rayConfig.getRedisAddress());
cmd.add("--address=" + rayConfig.getRedisAddress());
String command = cmd.stream().collect(Collectors.joining(" "));
LOGGER.debug("python worker command: {}", command);