mirror of
https://github.com/vale981/ray
synced 2025-03-06 18:41:40 -05:00
Don't log when a worker can't be started. (#1056)
This commit is contained in:
parent
54aaeb25ab
commit
a31d138f21
1 changed files with 2 additions and 1 deletions
|
@ -220,7 +220,8 @@ void start_worker(LocalSchedulerState *state,
|
|||
}
|
||||
/* We can't start a worker if we don't have the path to the worker script. */
|
||||
if (state->config.start_worker_command == NULL) {
|
||||
LOG_WARN("No valid command to start worker provided. Cannot start worker.");
|
||||
LOG_DEBUG(
|
||||
"No valid command to start worker provided. Cannot start worker.");
|
||||
return;
|
||||
}
|
||||
/* Launch the process to create the worker. */
|
||||
|
|
Loading…
Add table
Reference in a new issue