From 012745bce93e1d52fe07a4eadc6a90ddc2d3a8a1 Mon Sep 17 00:00:00 2001 From: w1am <33353798+w1am@users.noreply.github.com> Date: Fri, 12 Jun 2026 11:24:53 +0400 Subject: [PATCH 1/2] [DEV-1765] Set TCP_NODELAY on HttpConnector to disable Nagle's algorithm --- kurrentdb/src/grpc.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/kurrentdb/src/grpc.rs b/kurrentdb/src/grpc.rs index 1016b503..6c310443 100644 --- a/kurrentdb/src/grpc.rs +++ b/kurrentdb/src/grpc.rs @@ -896,6 +896,7 @@ impl NodeConnection { let mut http = HttpConnector::new(); http.enforce_http(false); + http.set_nodelay(true); let connector = tower::ServiceBuilder::new() .layer_fn(move |s| { From 0b6cbc4ae9dcdfe7717cc5be63e25f72e7485513 Mon Sep 17 00:00:00 2001 From: w1am <33353798+w1am@users.noreply.github.com> Date: Fri, 12 Jun 2026 18:27:19 +0400 Subject: [PATCH 2/2] Drop unused tracing-subscriber time feature --- kurrentdb/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kurrentdb/Cargo.toml b/kurrentdb/Cargo.toml index 3d5fe138..06fdbd29 100755 --- a/kurrentdb/Cargo.toml +++ b/kurrentdb/Cargo.toml @@ -78,7 +78,7 @@ ctor = "0.4" [dev-dependencies.tracing-subscriber] version = "0.3" -features = ["env-filter", "time", "tracing-log"] +features = ["env-filter", "tracing-log"] [package.metadata.docs.rs] all-features = true