Skip to content

Commit

Permalink
[Core][Core-worker] de-escalate the error message when worker is acce…
Browse files Browse the repository at this point in the history
…ssed after shutdown. (ray-project#20049)

* de-escalate

* lint
  • Loading branch information
scv119 authored Nov 4, 2021
1 parent b3b88a4 commit 5c0e012
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ray/core_worker/core_worker.cc
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,8 @@ void CoreWorkerProcess::EnsureInitialized(bool quick_exit) {
}

if (quick_exit) {
RAY_LOG(ERROR) << "The core worker process is not initialized yet or already "
<< "shutdown.";
RAY_LOG(WARNING) << "The core worker process is not initialized yet or already "
<< "shutdown.";
QuickExit();
} else {
RAY_CHECK(core_worker_process)
Expand Down

0 comments on commit 5c0e012

Please sign in to comment.