File tree 2 files changed +1
-5
lines changed 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,6 @@ prefix parallel
5
5
# sample-test : PASS,FLAKY
6
6
7
7
[true] # This section applies to all platforms
8
- # https://github.com/nodejs/node/issues/29802
9
- test-http2-reset-flood: PASS,FLAKY
10
8
11
9
[$system==win32]
12
10
# https://github.com/nodejs/node/issues/32863
@@ -46,8 +44,6 @@ test-crypto-keygen: SKIP
46
44
[$system==freebsd]
47
45
# https://github.com/nodejs/node/issues/31727
48
46
test-fs-stat-bigint: PASS,FLAKY
49
- # https://github.com/nodejs/node/issues/29802
50
- test-http2-reset-flood: PASS,FLAKY
51
47
# https://github.com/nodejs/node/issues/28803
52
48
test-stdout-close-catch: PASS,FLAKY
53
49
# https://github.com/nodejs/node/issues/31280
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ if (process.env.HAS_STARTED_WORKER) {
28
28
process . env . HAS_STARTED_WORKER = 1 ;
29
29
const worker = new Worker ( __filename ) . on ( 'message' , common . mustCall ( ( port ) => {
30
30
const h2header = Buffer . alloc ( 9 ) ;
31
- const conn = net . connect ( port ) ;
31
+ const conn = net . connect ( { port, allowHalfOpen : true } ) ;
32
32
33
33
conn . write ( 'PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n' ) ;
34
34
You can’t perform that action at this time.
0 commit comments