diff --git a/lib/python/ray/services.py b/lib/python/ray/services.py index c755d6eeb..3f1da3165 100644 --- a/lib/python/ray/services.py +++ b/lib/python/ray/services.py @@ -174,7 +174,7 @@ def start_ray_local(node_ip_address="127.0.0.1", num_workers=0, worker_path=None Redis hostname and port. The second """ if worker_path is None: - worker_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), "default_worker.py") + worker_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), "workers/default_worker.py") # Start Redis. redis_port = start_redis(cleanup=True) redis_address = address(node_ip_address, redis_port) diff --git a/lib/python/ray/workers/__init__.py b/lib/python/ray/workers/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/lib/python/ray/default_worker.py b/lib/python/ray/workers/default_worker.py similarity index 100% rename from lib/python/ray/default_worker.py rename to lib/python/ray/workers/default_worker.py