Skip to content

Commit ba63a91

Browse files
authored
test: disable timeouts in h2 high concurrency regression (#5205)
1 parent 2fb132c commit ba63a91

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

test/issue-4880.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,11 @@ function makeDispatcher (connections, maxConcurrentStreams) {
7070
return new Agent({
7171
keepAliveTimeout: 20_000,
7272
keepAliveMaxTimeout: 60_000,
73-
bodyTimeout: 20_000,
74-
headersTimeout: 20_000,
73+
// This test stresses stream abort/cleanup ordering. Timeouts make the
74+
// high-concurrency run dependent on CI host scheduling and can reject
75+
// otherwise healthy requests before the regression condition is reached.
76+
bodyTimeout: 0,
77+
headersTimeout: 0,
7578
allowH2: true,
7679
connections,
7780
pipelining: maxConcurrentStreams,

0 commit comments

Comments
 (0)