We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28415d3 commit b09240bCopy full SHA for b09240b
src/shared/protocol.ts
@@ -360,9 +360,7 @@ export abstract class Protocol<
360
const responseHandler = this._responseHandlers.get(messageId);
361
if (this._timeoutInfo.has(messageId) && responseHandler) {
362
try {
363
- if (!this._resetTimeout(messageId)) {
364
- return;
365
- }
+ this._resetTimeout(messageId);
366
} catch (error) {
367
responseHandler(error as Error);
368
return;
0 commit comments