We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a30d7f commit 55e71aeCopy full SHA for 55e71ae
plane/src/proxy/proxy_server.rs
@@ -157,9 +157,8 @@ impl Service<Request<Incoming>> for ProxyState {
157
.inc_connection(&route_info.backend_id);
158
let backend_id = route_info.backend_id.clone();
159
tokio::spawn(async move {
160
- if let Err(err) = upgrade_handler.run().await {
161
- tracing::error!("Error running upgrade handler: {}", err);
162
- };
+ // ignore noisy errors caused by IO issues (dropped connections, etc.)
+ let _ = upgrade_handler.run().await;
163
164
monitor
165
.lock()
0 commit comments