From 2e73dab7adf4b953ea7e77adee4ce23733bb8cc1 Mon Sep 17 00:00:00 2001 From: Marko Vejnovic Date: Mon, 1 Dec 2025 17:43:42 -0800 Subject: [PATCH] typo --- src/js/node/_http_client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/node/_http_client.ts b/src/js/node/_http_client.ts index f01d4f4629..6e0ced4dda 100644 --- a/src/js/node/_http_client.ts +++ b/src/js/node/_http_client.ts @@ -268,7 +268,7 @@ function ClientRequest(input, options, cb) { const method = this[kMethod]; let keepalive = true; - const agentKeepalive = this[kAgent]?.keepalive; + const agentKeepalive = this[kAgent]?.keepAlive; if (agentKeepalive !== undefined) { keepalive = agentKeepalive; }