Skip to content

Commit

Permalink
Merge pull request #7 from beacon-biosignals/dfk/startup_token
Browse files Browse the repository at this point in the history
  • Loading branch information
kleinschmidt authored Aug 18, 2023
2 parents 7ad1f47 + 1c0cddc commit 4ceb62d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ray/raylet/worker_pool.cc
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ WorkerPool::BuildProcessCommandArgs(const Language &language,
std::to_string(worker_startup_token_counter_));
worker_command_args.push_back("--worker-launch-time-ms=" +
std::to_string(current_sys_time_ms()));
} else if (language == Language::CPP) {
} else if (language == Language::CPP || language == Language::JULIA) {
worker_command_args.push_back("--startup_token=" +
std::to_string(worker_startup_token_counter_));
}
Expand Down

0 comments on commit 4ceb62d

Please sign in to comment.