Remove some additional debug info messages.

This commit is contained in:
Elizabeth Murray
2025-05-02 10:50:53 -07:00
parent 3e5e396c8d
commit 5f2adaa9ad
2 changed files with 0 additions and 4 deletions

View File

@@ -2,7 +2,6 @@ use std::{collections::HashMap, sync::Arc, time::{Duration, Instant}};
use tokio::{sync::{Mutex, Notify, mpsc, watch}, time::sleep};
use tonic::transport::{Channel, Endpoint};
use tracing::info;
use uuid;
/// A pooled gRPC client with capacity tracking and error handling.
@@ -239,7 +238,6 @@ impl ConnectionPool {
inner.last_connect_failure = Some(Instant::now());
}
if remove == 0 {
info!("Removing connection {} due to too many errors", id);
inner.entries.remove(&id);
}
} else {

View File

@@ -19,8 +19,6 @@ use pageserver_page_api::proto;
use pageserver_page_api::proto::PageServiceClient;
use utils::shard::ShardIndex;
use tracing::info;
mod client_cache;