feat: set tcp_nodelay in hyper builder (#25488)

closes: https://github.com/influxdata/influxdb/issues/25466
pull/25510/head
praveen-influx 2024-10-24 21:48:24 +01:00 committed by GitHub
parent f1bd868d78
commit cdb1e862b9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -196,6 +196,7 @@ where
let addr = AddrIncoming::from_listener(server.listener)?;
hyper::server::Builder::new(addr, Http::new())
.tcp_nodelay(true)
.serve(hybrid_make_service)
.with_graceful_shutdown(shutdown.cancelled())
.await?;