Skip to content

Commit 8245e5a

Browse files
apapirovskievanlucas
authored andcommitted
http2: simplify subsequent rstStream calls
Do not call destroy each time rstStream is called since the first call (or receipt of rst frame) will always trigger destroy. Expand existing test for this behaviour. PR-URL: #16753 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 21e9888 commit 8245e5a

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

lib/internal/http2/core.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -970,9 +970,8 @@ class Http2Session extends EventEmitter {
970970

971971
const state = stream[kState];
972972
if (state.rst) {
973-
// rst has already been called, do not call again,
974-
// skip straight to destroy
975-
stream.destroy();
973+
// rst has already been called by self or peer,
974+
// do not call again
976975
return;
977976
}
978977
state.rst = true;

test/parallel/test-http2-client-rststream-before-connect.js

+4
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ server.on('listening', common.mustCall(() => {
2121
// make sure that destroy is called
2222
req._destroy = common.mustCall(req._destroy.bind(req));
2323

24+
// second call doesn't do anything
25+
assert.doesNotThrow(() => client.rstStream(req, 8));
26+
assert.strictEqual(req.rstCode, 0);
27+
2428
req.on('streamClosed', common.mustCall((code) => {
2529
assert.strictEqual(req.destroyed, true);
2630
assert.strictEqual(code, 0);

0 commit comments

Comments
 (0)