Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: fix test failures with node v19 change to default http clients…
… to use keep-alive As of nodejs/node#37184 node v19 and later defaults the http,https.globalAgent to use keep-alive: - globalAgent: new Agent() + globalAgent: new Agent({ keepAlive: true, scheduling: 'lifo', timeout: 5000 }) This change in default broke a couple tests. The agent itself is unaffected because our http client already uses a custom http agent using keep-alive.
- Loading branch information