mirror of
https://github.com/wassname/ray.git
synced 2026-06-29 12:24:32 +08:00
Remove shutdown prints to the console (#8626)
This commit is contained in:
@@ -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(
|
||||
|
||||
@@ -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) {
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user