diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2024-11-07 17:12:13 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-07 17:12:13 +0530 |
commit | b9262130fec34137e38c922015c6b671c0fa9396 (patch) | |
tree | f8095a4939560aadbf9bd11d2dcc55f75d4e38a4 /ext/http/lib.rs | |
parent | 742744d4985548a948bc90e78673c0c22d607d8a (diff) |
feat(ext/http): abort signal when request is cancelled (#26761)
Closes https://github.com/denoland/deno/issues/21653
Diffstat (limited to 'ext/http/lib.rs')
-rw-r--r-- | ext/http/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/http/lib.rs b/ext/http/lib.rs index 6243804a1..9d71e3ad3 100644 --- a/ext/http/lib.rs +++ b/ext/http/lib.rs @@ -113,6 +113,7 @@ deno_core::extension!( http_next::op_http_get_request_header, http_next::op_http_get_request_headers, http_next::op_http_get_request_method_and_url<HTTP>, + http_next::op_http_get_request_cancelled, http_next::op_http_read_request_body, http_next::op_http_serve_on<HTTP>, http_next::op_http_serve<HTTP>, |