Skip to content

Commit

Permalink
Don't log when a worker can't be started. (ray-project#1056)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertnishihara authored and ericl committed Oct 2, 2017
1 parent 54aaeb2 commit a31d138
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/local_scheduler/local_scheduler.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down

0 comments on commit a31d138

Please sign in to comment.