From 9b1772253f47d20d8aa1bc727d67630b2026b9e5 Mon Sep 17 00:00:00 2001 From: Clark Zinzow Date: Mon, 20 Jul 2020 15:03:11 -0600 Subject: [PATCH] Ensure unique log file names across same-node raylets. (#9561) --- python/ray/node.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/ray/node.py b/python/ray/node.py index ca120b0f0..d89be2ee9 100644 --- a/python/ray/node.py +++ b/python/ray/node.py @@ -647,7 +647,8 @@ class Node: use_profiler (bool): True if we should start the process in the valgrind profiler. """ - raylet_out_name, raylet_err_name = self.get_log_file_names("raylet") + raylet_out_name, raylet_err_name = self.get_log_file_names( + "raylet", unique=True) stdout_file, stderr_file = (open_log(raylet_out_name), open_log(raylet_err_name)) process_info = ray.services.start_raylet(