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;