Skip to content

Commit 55e71ae

Browse files
authored
quiet logs (#869)
1 parent 6a30d7f commit 55e71ae

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

plane/src/proxy/proxy_server.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,9 +157,8 @@ impl Service<Request<Incoming>> for ProxyState {
157157
.inc_connection(&route_info.backend_id);
158158
let backend_id = route_info.backend_id.clone();
159159
tokio::spawn(async move {
160-
if let Err(err) = upgrade_handler.run().await {
161-
tracing::error!("Error running upgrade handler: {}", err);
162-
};
160+
// ignore noisy errors caused by IO issues (dropped connections, etc.)
161+
let _ = upgrade_handler.run().await;
163162

164163
monitor
165164
.lock()

0 commit comments

Comments
 (0)