Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
Signed-off-by: Ruiyang Wang <[email protected]>
  • Loading branch information
rynewang committed Nov 29, 2024
1 parent 9567588 commit a908c53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ray/raylet/node_manager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1896,7 +1896,7 @@ void NodeManager::HandlePrestartWorkers(rpc::PrestartWorkersRequest request,
return false;
});

for (int64_t i = 0; i < request.num_workers(); i++) {
for (uint64_t i = 0; i < request.num_workers(); i++) {
worker_pool_.StartNewWorker(pop_worker_request);
}
send_reply_callback(Status::OK(), nullptr, nullptr);
Expand Down

0 comments on commit a908c53

Please sign in to comment.