-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
async_hooks: only emit
after
for AsyncResource if stack not empty
We clear the async id stack inside the uncaught exception handler and emit `after` events in the process, so we should not emit `after` a second time from the `runInAsyncScope()` code. This should match the behaviour we have in C++. Fixes: #30080 PR-URL: #30087 Reviewed-By: Gus Caplan <[email protected]> Reviewed-By: Anto Aravinth <[email protected]>
- Loading branch information
Showing
2 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const async_hooks = require('async_hooks'); | ||
|
||
// Regression test for https://github.com/nodejs/node/issues/30080: | ||
// An uncaught exception inside a queueMicrotask callback should not lead | ||
// to multiple after() calls for it. | ||
|
||
let µtaskId; | ||
const events = []; | ||
|
||
async_hooks.createHook({ | ||
init(id, type, triggerId, resoure) { | ||
if (type === 'Microtask') { | ||
µtaskId = id; | ||
events.push('init'); | ||
} | ||
}, | ||
before(id) { | ||
if (id === µtaskId) events.push('before'); | ||
}, | ||
after(id) { | ||
if (id === µtaskId) events.push('after'); | ||
}, | ||
destroy(id) { | ||
if (id === µtaskId) events.push('destroy'); | ||
} | ||
}).enable(); | ||
|
||
queueMicrotask(() => { throw new Error(); }); | ||
|
||
process.on('uncaughtException', common.mustCall()); | ||
process.on('exit', () => { | ||
assert.deepStrictEqual(events, ['init', 'after', 'before', 'destroy']); | ||
}); |