From 51b3534b3d3833667e8c029564bebf319b0d2596 Mon Sep 17 00:00:00 2001 From: Divy Srivastava Date: Wed, 19 Jul 2023 03:04:26 +0530 Subject: fix(ext/node): check if resource can be used with write_vectored (#19868) Fixes https://github.com/denoland/deno/issues/19766 Fixes https://github.com/denoland/deno/issues/19846 --- ext/http/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'ext/http/lib.rs') diff --git a/ext/http/lib.rs b/ext/http/lib.rs index 26cbffd1b..c33c1d15e 100644 --- a/ext/http/lib.rs +++ b/ext/http/lib.rs @@ -121,6 +121,7 @@ deno_core::extension!( http_next::op_http_upgrade_websocket_next, http_next::op_http_upgrade_raw, http_next::op_raw_write_vectored, + http_next::op_can_write_vectored, http_next::op_http_try_wait, http_next::op_http_wait, ], -- cgit v1.2.3