test: fix flaky parallel/test-http2-client-upload
In parallel/test-http2-client-upload, the `client.destroy()`
call could terminate the connection before all data was sent
over the wire successfully.
Using `client.shutdown()` removes the flakiness.
Also, listen on `req.on('finish')` rather than the file stream’s
`end` event, since we’re not interested in when the source stream
finishes, but rather when the HTTP/2 stream finishes.
PR-URL: https://github.com/nodejs/node/pull/17361
Refs: https://github.com/nodejs/node/pull/17356
Reviewed-By:
James M Snell <jasnell@gmail.com>
Reviewed-By:
Kyle Farnung <kfarnung@microsoft.com>
Reviewed-By:
Refael Ackermann <refack@gmail.com>
Reviewed-By:
Anatoli Papirovski <apapirovski@mac.com>
Reviewed-By:
Jon Moss <me@jonathanmoss.me>
parent
1c1ef3c3
Please register or sign in to comment