summaryrefslogtreecommitdiff
path: root/ext/http/Cargo.toml
diff options
context:
space:
mode:
authorMatt Mastracci <matthew@mastracci.com>2023-05-16 17:00:59 -0600
committerGitHub <noreply@github.com>2023-05-16 17:00:59 -0600
commita22388bbd1377f75d3b873c59f6836cd12c2abe5 (patch)
tree04b9879ab7172884b3417fdf1a3d170564c54726 /ext/http/Cargo.toml
parent9ba2c4c42fcbadea1f19c67c88b5cbc4c97804f3 (diff)
fix(ext/http): Ensure cancelled requests don't crash Deno.serve (#19154)
Fixes for various `Attemped to access invalid request` bugs (#19058, #15427, #17213). We did not wait for both a drop event and a completion event before removing items from the slab table. This ensures that we do so. In addition, the slab methods are refactored out into `slab.rs` for maintainability.
Diffstat (limited to 'ext/http/Cargo.toml')
-rw-r--r--ext/http/Cargo.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/http/Cargo.toml b/ext/http/Cargo.toml
index e555d742e..1b3d075d1 100644
--- a/ext/http/Cargo.toml
+++ b/ext/http/Cargo.toml
@@ -12,6 +12,7 @@ description = "HTTP server implementation for Deno"
[features]
"__zombie_http_tracking" = []
+"__http_tracing" = []
[lib]
path = "lib.rs"