Skip to content

Commit

Permalink
Error
Browse files Browse the repository at this point in the history
  • Loading branch information
cadedaniel committed Apr 6, 2023
1 parent e406666 commit 11555b9
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 @@ -741,8 +741,8 @@ void CoreWorker::KillChildProcs() {

for (const auto &child_pid : child_procs) {
auto maybe_error_code = KillProc(child_pid);
RAY_CHECK(maybe_error_code &&
"Expected this path to only be called when KillProc is supported.");
RAY_CHECK(maybe_error_code)
<< "Expected this path to only be called when KillProc is supported.";
auto error_code = *maybe_error_code;

RAY_LOG(INFO) << "Kill result for child pid " << child_pid << ": "
Expand Down

0 comments on commit 11555b9

Please sign in to comment.