You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm opening this PR just to inform the new Node.js release v19 might break a few users that expect the connection will be closed after the first request.
Example:
sget({method: 'POST',url: 'localhost:3000',},(err,res,body)=>{
...
})sget({method: 'POST',url: 'localhost:3000',agent: false,// this will obligate creating an agent for every request, so the connection won't be reutilized by default},(err,res,body)=>{
...
})
The text was updated successfully, but these errors were encountered:
Hello!
I'm opening this PR just to inform the new Node.js release v19 might break a few users that expect the connection will be closed after the first request.
Example:
The text was updated successfully, but these errors were encountered: