We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4028c08 commit f38a00eCopy full SHA for f38a00e
awswrangler/distributed/ray/_core.py
@@ -146,7 +146,6 @@ def initialize_ray(
146
]
147
148
ray_init_kwargs = {
149
- "address": "local",
150
"num_cpus": cpu_count,
151
"num_gpus": gpu_count,
152
"include_dashboard": include_dashboard,
@@ -159,5 +158,5 @@ def initialize_ray(
159
158
"env_vars": {var: os.environ.get(var) for var in ray_runtime_env_vars if os.environ.get(var)}
160
},
161
}
162
- _logger.info("Starting a local Ray cluster")
+ _logger.info("Starting a Ray cluster")
163
ray.init(**ray_init_kwargs)
0 commit comments