René's URL Explorer Experiment


Title: http: Server.closeIdleConnections() does not iterate pre-request sockets · Issue #63452 · nodejs/node · GitHub

Open Graph Title: http: Server.closeIdleConnections() does not iterate pre-request sockets · Issue #63452 · nodejs/node

X Title: http: Server.closeIdleConnections() does not iterate pre-request sockets · Issue #63452 · nodejs/node

Description: Version v24.15.0 (also tested on several other versions) Platform Darwin G0674 25.4.0 Darwin Kernel Version 25.4.0: Thu Mar 19 19:30:44 PDT 2026; root:xnu-12377.101.15~1/RELEASE_ARM64_T6000 arm64 (Also tested on Linux Mint) Subsystem htt...

Open Graph Description: Version v24.15.0 (also tested on several other versions) Platform Darwin G0674 25.4.0 Darwin Kernel Version 25.4.0: Thu Mar 19 19:30:44 PDT 2026; root:xnu-12377.101.15~1/RELEASE_ARM64_T6000 arm64 (...

X Description: Version v24.15.0 (also tested on several other versions) Platform Darwin G0674 25.4.0 Darwin Kernel Version 25.4.0: Thu Mar 19 19:30:44 PDT 2026; root:xnu-12377.101.15~1/RELEASE_ARM64_T6000 arm64 (...

Opengraph URL: https://github.com/nodejs/node/issues/63452

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"http: Server.closeIdleConnections() does not iterate pre-request sockets","articleBody":"### Version\n\nv24.15.0 (also tested on several other versions)\n\n### Platform\n\n```text\nDarwin G0674 25.4.0 Darwin Kernel Version 25.4.0: Thu Mar 19 19:30:44 PDT 2026; root:xnu-12377.101.15~1/RELEASE_ARM64_T6000 arm64\n\n(Also tested on Linux Mint)\n```\n\n### Subsystem\n\nhttp\n\n### What steps will reproduce the bug?\n\n```js\nimport { createServer } from \"node:http\";\nimport { createConnection } from \"node:net\";\n\nconst server = createServer((req, res) =\u003e res.end(\"ok\"));\nserver.listen(3099, \"127.0.0.1\");\nawait new Promise((r) =\u003e server.once(\"listening\", r));\n\n// TCP socket that doesn't send anything\nconst sock = createConnection(3099, \"127.0.0.1\");\nawait new Promise((r) =\u003e sock.once(\"connect\", r));\n\n// Wait until the server has actually accepted and registered the socket,\nawait new Promise((r) =\u003e server.once(\"connection\", r));\n\nconst closed = new Promise((r) =\u003e\n  server.close(() =\u003e r(performance.now())),\n);\nconst closeStart = performance.now();\nserver.closeIdleConnections();\n\nconsole.log(\"after closeIdleConnections, awaiting close...\");\nconst t = await Promise.race([\n  closed,\n  new Promise((r) =\u003e setTimeout(() =\u003e r(null), 2000)),\n]);\nconsole.log(t === null ? \"still hung after 2s\" : `closed in ${t - closeStart}ms`);\n\nsock.destroy();\n```\n\n### How often does it reproduce? Is there a required condition?\n\nNone.\n\n### What is the expected behavior? Why is that the expected behavior?\n\n[Server.closeIdleConnections() docs](https://nodejs.org/api/http.html#serverclose-idle-connections) say:\n\n\u003e Closes all connections connected to this server which are not sending a request or waiting for a response.\n\nA TCP socket that is connected but has not yet sent any HTTP data fits the description to me. So the expected behavior would be `closeIdleConnections()` to close them:\n\n```\nafter closeIdleConnections, awaiting close...\nclosed in \u003csome number below 2000\u003ems\n```\n\n### What do you see instead?\n\nBut pre-request sockets are not closed:\n\n```\nafter closeIdleConnections, awaiting close...\nstill hung after 2s\n```\n\n\n### Additional information\n\nBrowsers (Chrome especially) routinely open speculative TCP connections that don't send HTTP data until needed. They remain open for a while even when the user closes the tab or navigates away from the page. Server-side, those sockets are open with `bytesRead === 0` and they block graceful shutdown in pretty much all frameworks with a graceful shutdown feature:\n\n- `server.close()` waits for them (as it should).\n- `server.closeIdleConnections()` is the documented escape hatch for \"drop idle connections now,\" but per above it doesn't.\n- The only working option is `server.closeAllConnections()`, which also kills in-flight requests and defeats the purpose of graceful drain.\n\nA quick search shows that it affects graceful shutdown in frameworks. See, for instance, [Fastify #5713](https://github.com/fastify/fastify/issues/5713) (closed as \"not planned\").\n\nA user-space workaround exists (track `'connection'` events, drop sockets with `bytesRead === 0`) but there's at least a mismatch between the docs and the impl.\n\nThe root cause seems to be the implementation in [`lib/_http_server.js`](https://github.com/nodejs/node/blob/main/lib/_http_server.js) that iterates `this[kConnections].idle()`:\n\n```js\nServer.prototype.closeIdleConnections = function closeIdleConnections() {\n  if (!this[kConnections]) return;\n  const connections = this[kConnections].idle();\n  for (let i = 0, l = connections.length; i \u003c l; i++) {\n    if (connections[i].socket._httpMessage \u0026\u0026 !connections[i].socket._httpMessage.finished) continue;\n    connections[i].socket.destroy();\n  }\n};\n```\n\n`kConnections` is HTTP-level state; sockets are added when an HTTP exchange begins. Pre-request sockets exist in `net.Server`'s connection list (`server._connections`) but never reach `kConnections`. So the HTTP-level bookkeeping doesn't see them at all.\n\nIt would be nice to see a proper Node.js-level fix, or, if it's not possible or desirable for whatever reason, a documentation update to warn against the caveat.","author":{"url":"https://github.com/cyco130","@type":"Person","name":"cyco130"},"datePublished":"2026-05-20T10:21:22.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/63452/node/issues/63452"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:2bd4250d-a6ed-ee7c-63a9-200a4d68afc0
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idE8CA:282357:1BE12CF:2705119:6A4CC4E3
html-safe-nonce68bd0233b399e4fdba6255f6b1cb49f38d4c09b5b0ef45909751ab63d46763fa
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFOENBOjI4MjM1NzoxQkUxMkNGOjI3MDUxMTk6NkE0Q0M0RTMiLCJ2aXNpdG9yX2lkIjoiNTgwMzY4MTY3MjY5MjgxMDk3OSIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmacd792452e710a23ce2afc87ae5da3fcd8706f7a78b6b0c3c2bfe61e062b56d181
hovercard-subject-tagissue:4485440628
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/nodejs/node/63452/issue_layout
twitter:imagehttps://opengraph.githubassets.com/76cd56cf3c13bf19252f801f681b73478255bfba1aa9ebd8812c7ec0d72ce5c2/nodejs/node/issues/63452
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/76cd56cf3c13bf19252f801f681b73478255bfba1aa9ebd8812c7ec0d72ce5c2/nodejs/node/issues/63452
og:image:altVersion v24.15.0 (also tested on several other versions) Platform Darwin G0674 25.4.0 Darwin Kernel Version 25.4.0: Thu Mar 19 19:30:44 PDT 2026; root:xnu-12377.101.15~1/RELEASE_ARM64_T6000 arm64 (...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamecyco130
hostnamegithub.com
expected-hostnamegithub.com
None3d11bb817438277de2a940854450e83a7d32b6aeb5014e9e6b00a6423900251c
turbo-cache-controlno-preview
go-importgithub.com/nodejs/node git https://github.com/nodejs/node.git
octolytics-dimension-user_id9950313
octolytics-dimension-user_loginnodejs
octolytics-dimension-repository_id27193779
octolytics-dimension-repository_nwonodejs/node
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id27193779
octolytics-dimension-repository_network_root_nwonodejs/node
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
released0da0eb92994395299ed4450bf67b0373005be36
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/nodejs/node/issues/63452#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fissues%2F63452
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fissues%2F63452
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=nodejs%2Fnode
Reloadhttps://github.com/nodejs/node/issues/63452
Reloadhttps://github.com/nodejs/node/issues/63452
Reloadhttps://github.com/nodejs/node/issues/63452
Please reload this pagehttps://github.com/nodejs/node/issues/63452
nodejs https://github.com/nodejs
nodehttps://github.com/nodejs/node
Please reload this pagehttps://github.com/nodejs/node/issues/63452
Notifications https://github.com/login?return_to=%2Fnodejs%2Fnode
Fork 36k https://github.com/login?return_to=%2Fnodejs%2Fnode
Star 118k https://github.com/login?return_to=%2Fnodejs%2Fnode
Code https://github.com/nodejs/node
Issues 1.4k https://github.com/nodejs/node/issues
Pull requests 963 https://github.com/nodejs/node/pulls
Actions https://github.com/nodejs/node/actions
Projects https://github.com/nodejs/node/projects
Security and quality 0 https://github.com/nodejs/node/security
Insights https://github.com/nodejs/node/pulse
Code https://github.com/nodejs/node
Issues https://github.com/nodejs/node/issues
Pull requests https://github.com/nodejs/node/pulls
Actions https://github.com/nodejs/node/actions
Projects https://github.com/nodejs/node/projects
Security and quality https://github.com/nodejs/node/security
Insights https://github.com/nodejs/node/pulse
#63470https://github.com/nodejs/node/pull/63470
http: Server.closeIdleConnections() does not iterate pre-request socketshttps://github.com/nodejs/node/issues/63452#top
#63470https://github.com/nodejs/node/pull/63470
https://github.com/cyco130
cyco130https://github.com/cyco130
on May 20, 2026https://github.com/nodejs/node/issues/63452#issue-4485440628
Server.closeIdleConnections() docshttps://nodejs.org/api/http.html#serverclose-idle-connections
Fastify #5713https://github.com/fastify/fastify/issues/5713
lib/_http_server.jshttps://github.com/nodejs/node/blob/main/lib/_http_server.js
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.