Skip to content

Commit

Permalink
rebase fixes
Browse files Browse the repository at this point in the history
Signed-off-by: vitsai <victoria@anyscale.com>
  • Loading branch information
vitsai committed Aug 9, 2023
1 parent 38070fc commit af111c7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ray/gcs/gcs_client/gcs_client.cc
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,8 @@ Status PythonGcsClient::Connect(const ClusterID &cluster_id,
Status PythonGcsClient::CheckAlive(const std::vector<std::string> &raylet_addresses,
int64_t timeout_ms,
std::vector<bool> &result) {
grpc::ClientContext &&context = PrepareContext(timeout_ms);
grpc::ClientContext context;
PrepareContext(context, timeout_ms);

rpc::CheckAliveRequest request;
for (const auto &address : raylet_addresses) {
Expand Down

0 comments on commit af111c7

Please sign in to comment.