Skip to content

Commit 1699a09

Browse files
authored
Handle exceptions from agent addRequest() (#330)
`tls.createSecureContext()` can throw exceptions, so `.addRequest()` can throw exceptions as well.
1 parent 96b771b commit 1699a09

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.changeset/pretty-terms-exercise.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'agent-base': patch
3+
---
4+
5+
Handle exceptions caused by Agent.addRequest()

packages/agent-base/src/index.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,12 @@ export abstract class Agent extends http.Agent {
154154
(socket) => {
155155
this.decrementSockets(name, fakeSocket);
156156
if (socket instanceof http.Agent) {
157-
// @ts-expect-error `addRequest()` isn't defined in `@types/node`
158-
return socket.addRequest(req, connectOpts);
157+
try {
158+
// @ts-expect-error `addRequest()` isn't defined in `@types/node`
159+
return socket.addRequest(req, connectOpts);
160+
} catch (err: unknown) {
161+
return cb(err as Error);
162+
}
159163
}
160164
this[INTERNAL].currentSocket = socket;
161165
// @ts-expect-error `createSocket()` isn't defined in `@types/node`

0 commit comments

Comments
 (0)