From 4e3aff8400fe1e6854a27687d14a07dc837c88d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Thu, 18 Jan 2024 17:57:22 +0100 Subject: chore: upgrade deno_core to 0.247.0 (#21974) --- ext/node/polyfills/http.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'ext/node/polyfills') diff --git a/ext/node/polyfills/http.ts b/ext/node/polyfills/http.ts index 9356dde0a..9654d3beb 100644 --- a/ext/node/polyfills/http.ts +++ b/ext/node/polyfills/http.ts @@ -6,9 +6,12 @@ import { core } from "ext:core/mod.js"; const { op_fetch_response_upgrade, - op_fetch_send, op_node_http_request, } = core.ensureFastOps(); +// TODO(bartlomieju): this ops is also used in `ext/fetch/26_fetch.js`. +const { + op_fetch_send, +} = core.ensureFastOps(true); import { TextEncoder } from "ext:deno_web/08_text_encoding.js"; import { setTimeout } from "ext:deno_web/02_timers.js"; -- cgit v1.2.3