mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00
Ensure unique log file names across same-node raylets. (#9561)
This commit is contained in:
parent
4e2e3bd348
commit
9b1772253f
1 changed files with 2 additions and 1 deletions
|
@ -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(
|
||||
|
|
Loading…
Add table
Reference in a new issue