http2: fix ping callback
In case there was no ack, the callback would have returned more than the error as return value. This makes sure that is not the case anymore. PR-URL: https://github.com/nodejs/node/pull/20311 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
This commit is contained in:
parent
b92c656302
commit
bb546ac001
@ -704,8 +704,11 @@ const proxySocketHandler = {
|
||||
// data received on the PING acknowlegement.
|
||||
function pingCallback(cb) {
|
||||
return function pingCallback(ack, duration, payload) {
|
||||
const err = ack ? null : new ERR_HTTP2_PING_CANCEL();
|
||||
cb(err, duration, payload);
|
||||
if (ack) {
|
||||
cb(null, duration, payload);
|
||||
} else {
|
||||
cb(new ERR_HTTP2_PING_CANCEL());
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user