From 6333dd44cb889eee19df463e3a08e9c1fda5f75e Mon Sep 17 00:00:00 2001 From: Ciro Spaciari Date: Thu, 4 Sep 2025 17:20:53 -0700 Subject: [PATCH] fixes #20547 --- src/js/node/_http_client.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/js/node/_http_client.ts b/src/js/node/_http_client.ts index 0a0dde8ea7..cfbdb1c1a7 100644 --- a/src/js/node/_http_client.ts +++ b/src/js/node/_http_client.ts @@ -96,6 +96,17 @@ class WrappedSocket extends Duplex { this.#queue.push({ value, cb }); } } + setNoDelay() { + return this; + } + + setKeepAlive() { + return this; + } + + setTimeout() { + return this; + } #end() { if (this.#ended) return;