mirror of
https://github.com/wassname/ray.git
synced 2026-06-27 20:53:14 +08:00
Enable GCS Service by default (#7541)
This commit is contained in:
@@ -226,7 +226,8 @@ public class RunManager {
|
||||
}
|
||||
|
||||
// start gcs server
|
||||
if (System.getenv("RAY_GCS_SERVICE_ENABLED") != null) {
|
||||
if (System.getenv("RAY_GCS_SERVICE_ENABLED") == null ||
|
||||
System.getenv("RAY_GCS_SERVICE_ENABLED") == "true") {
|
||||
String redisPasswordOption = "";
|
||||
if (!Strings.isNullOrEmpty(rayConfig.headRedisPassword)) {
|
||||
redisPasswordOption = rayConfig.headRedisPassword;
|
||||
|
||||
Reference in New Issue
Block a user