Skip to content

Commit ee64eb5

Browse files
authoredMay 7, 2024
fix: pass abort function (#3212)
1 parent 8dc6a7e commit ee64eb5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎lib/dispatcher/client-h2.js

+2
Original file line numberDiff line numberDiff line change
@@ -524,6 +524,7 @@ function writeH2 (client, request) {
524524
}
525525
} else if (util.isStream(body)) {
526526
writeStream({
527+
abort,
527528
body,
528529
client,
529530
request,
@@ -535,6 +536,7 @@ function writeH2 (client, request) {
535536
})
536537
} else if (util.isIterable(body)) {
537538
writeIterable({
539+
abort,
538540
body,
539541
client,
540542
request,

0 commit comments

Comments
 (0)