[Java] Run java on mac with public ip (#19701)

This commit is contained in:
Jiajun Yao 2021-10-25 11:38:33 -07:00 committed by GitHub
parent ff7d35d246
commit e4542be0d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -28,6 +28,8 @@ public class RunManager {
command.add("--head");
command.add("--redis-password");
command.add(rayConfig.redisPassword);
command.add("--node-ip-address");
command.add(rayConfig.nodeIp);
command.addAll(rayConfig.headArgs);
String numGpus = System.getProperty("num-gpus");