From 0fc33af53a678c6b3d27aaa4f01075aea0852bcf Mon Sep 17 00:00:00 2001 From: Ciro Spaciari Date: Sat, 7 Sep 2024 09:09:48 -0700 Subject: [PATCH] noop --- src/js/node/http.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/js/node/http.ts b/src/js/node/http.ts index 4dd8c38a8c..b9c7308b48 100644 --- a/src/js/node/http.ts +++ b/src/js/node/http.ts @@ -1298,7 +1298,6 @@ ServerResponse.prototype._write = function (chunk, encoding, callback) { ensureReadableStreamController.$call(this, controller => { controller.write(chunk); - //TODO: should we flush here? callback(); }); }; @@ -1322,7 +1321,6 @@ ServerResponse.prototype._writev = function (chunks, callback) { for (const chunk of chunks) { controller.write(chunk.chunk); } - //TODO: should we flush here? callback(); }); };