From 61bf6c6123fc2e05d8d63752a22a1210b3eef707 Mon Sep 17 00:00:00 2001 From: Robert Nishihara Date: Mon, 17 Sep 2018 16:40:45 -0700 Subject: [PATCH] Fix regression in directing worker output to stdout/stderr. (#2897) --- python/ray/services.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ray/services.py b/python/ray/services.py index 8f2c33e92..9d933a050 100644 --- a/python/ray/services.py +++ b/python/ray/services.py @@ -1546,7 +1546,7 @@ def start_ray_processes(address_info=None, local_scheduler_stdout_file, local_scheduler_stderr_file = ( new_log_files( "local_scheduler_{}".format(i), - redirect_output=redirect_output)) + redirect_output=redirect_worker_output)) local_scheduler_name = start_local_scheduler( redis_address, node_ip_address,