Skip to content

Commit

Permalink
fix(node): Clear ANR timer on stop (#11229)
Browse files Browse the repository at this point in the history
This was missed from the original PR #11214 but is already included in
the backport #11228
  • Loading branch information
timfish authored and c298lee committed Mar 22, 2024
1 parent d87efcf commit 77ef529
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/node-experimental/src/integrations/anr/index.ts
Expand Up @@ -175,5 +175,6 @@ async function _startWorker(
return () => {
// eslint-disable-next-line @typescript-eslint/no-floating-promises
worker.terminate();
clearInterval(timer);
};
}

0 comments on commit 77ef529

Please sign in to comment.