Skip to content

Commit ad68f63

Browse files
lukekarrysaddaleax
andauthored
Destroy agent instances when disposed from cache (#350)
Co-authored-by: Anna Henningsen <[email protected]>
1 parent a40e3ad commit ad68f63

File tree

3 files changed

+29
-5
lines changed

3 files changed

+29
-5
lines changed

.changeset/unlucky-vans-shout.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'proxy-agent': patch
3+
---
4+
5+
Dispose of Agent instances in cache correctly

packages/proxy-agent/src/index.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,10 @@ export class ProxyAgent extends Agent {
8383
/**
8484
* Cache for `Agent` instances.
8585
*/
86-
cache = new LRUCache<string, Agent>({ max: 20 });
86+
cache = new LRUCache<string, Agent>({
87+
max: 20,
88+
dispose: (agent) => agent.destroy(),
89+
});
8790

8891
connectOpts?: ProxyAgentOptions;
8992
httpAgent: http.Agent;

pnpm-lock.yaml

+20-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)