mirror of
https://github.com/wassname/ray.git
synced 2026-07-02 21:39:18 +08:00
Ensure unique log file names across same-node raylets. (#9561)
This commit is contained in:
+2
-1
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user