aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/bun.js/webcore/streams.zig3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/bun.js/webcore/streams.zig b/src/bun.js/webcore/streams.zig
index 6aead6952..c39f73603 100644
--- a/src/bun.js/webcore/streams.zig
+++ b/src/bun.js/webcore/streams.zig
@@ -2356,9 +2356,6 @@ pub fn HTTPServerWritable(comptime ssl: bool) type {
}
fn send(this: *@This(), buf: []const u8) bool {
- // send is a no-op when already aborted
- if (this.aborted) return false;
-
std.debug.assert(!this.done);
defer log("send: {d} bytes (backpressure: {any})", .{ buf.len, this.has_backpressure });