Remove shutdown prints to the console (#8626)

This commit is contained in:
Edward Oakes
2020-05-27 10:52:31 -05:00
committed by GitHub
parent 2746fc0476
commit 442ada0fcd
3 changed files with 3 additions and 3 deletions
@@ -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(
+1 -1
View File
@@ -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) {
+1 -1
View File
@@ -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 {