Skip to content

Commit

Permalink
[Core] Fix initization order of GcsServerAddressUpdater members (ray-…
Browse files Browse the repository at this point in the history
  • Loading branch information
peytondmurray authored May 20, 2022
1 parent 9ea5a8e commit 85fe534
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ray/core_worker/gcs_server_address_updater.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ class GcsServerAddressUpdater {
/// Update gcs server address.
void UpdateGcsServerAddress();

instrumented_io_context updater_io_service_;
rpc::ClientCallManager client_call_manager_;
/// A client connection to the raylet.
raylet::RayletClient raylet_client_;
std::function<void(std::string, int)> update_func_;
instrumented_io_context updater_io_service_;
PeriodicalRunner updater_runner_;
std::thread updater_thread_;
int32_t failed_ping_count_ = 0;
Expand Down

0 comments on commit 85fe534

Please sign in to comment.