Skip to content

Commit

Permalink
Remove shutdown prints to the console (ray-project#8626)
Browse files Browse the repository at this point in the history
  • Loading branch information
edoakes authored May 27, 2020
1 parent 2746fc0 commit 442ada0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/ray/gcs/gcs_client/service_based_gcs_client.cc
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ void ServiceBasedGcsClient::Disconnect() {
gcs_pub_sub_.reset();
redis_gcs_client_->Disconnect();
redis_gcs_client_.reset();
RAY_LOG(INFO) << "ServiceBasedGcsClient Disconnected.";
RAY_LOG(DEBUG) << "ServiceBasedGcsClient Disconnected.";
}

void ServiceBasedGcsClient::GetGcsServerAddressFromRedis(
Expand Down
2 changes: 1 addition & 1 deletion src/ray/gcs/redis_client.cc
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ void RedisClient::Attach() {
void RedisClient::Disconnect() {
RAY_CHECK(is_connected_);
is_connected_ = false;
RAY_LOG(INFO) << "RedisClient disconnected.";
RAY_LOG(DEBUG) << "RedisClient disconnected.";
}

std::shared_ptr<RedisContext> RedisClient::GetShardContext(const std::string &shard_key) {
Expand Down
2 changes: 1 addition & 1 deletion src/ray/gcs/redis_gcs_client.cc
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ void RedisGcsClient::Disconnect() {
RAY_CHECK(is_connected_);
is_connected_ = false;
redis_client_->Disconnect();
RAY_LOG(INFO) << "RedisGcsClient Disconnected.";
RAY_LOG(DEBUG) << "RedisGcsClient Disconnected.";
}

std::string RedisGcsClient::DebugString() const {
Expand Down

0 comments on commit 442ada0

Please sign in to comment.