Skip to content

Commit a840e9d

Browse files
legendecascodebytere
authored andcommitted
async_hooks: ensure event after been emitted on runInAsyncScope
The exception handler user-defined will not automatically emit after for the async resource. Also removes a duplicated case `test-emit-after-uncaught-exception-runInAsyncScope.js` which is identical to test-emit-after-uncaught-exception.js. Refs: #30965 PR-URL: #31784 Fixes: #31783 Reviewed-By: Vladimir de Turckheim <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
1 parent 0654e67 commit a840e9d

3 files changed

+19
-45
lines changed

lib/async_hooks.js

+10-5
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ const {
2222
executionAsyncId,
2323
triggerAsyncId,
2424
// Private API
25+
hasAsyncIdStack,
2526
getHookArrays,
2627
enableHooks,
2728
disableHooks,
@@ -179,12 +180,16 @@ class AsyncResource {
179180
const asyncId = this[async_id_symbol];
180181
emitBefore(asyncId, this[trigger_async_id_symbol], this);
181182

182-
const ret = thisArg === undefined ?
183-
fn(...args) :
184-
ReflectApply(fn, thisArg, args);
183+
try {
184+
const ret = thisArg === undefined ?
185+
fn(...args) :
186+
ReflectApply(fn, thisArg, args);
185187

186-
emitAfter(asyncId);
187-
return ret;
188+
return ret;
189+
} finally {
190+
if (hasAsyncIdStack())
191+
emitAfter(asyncId);
192+
}
188193
}
189194

190195
emitDestroy() {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
'use strict';
2+
3+
require('../common');
4+
const { AsyncResource } = require('async_hooks');
5+
6+
try {
7+
new AsyncResource('foo').runInAsyncScope(() => { throw new Error('bar'); });
8+
} catch {}
9+
// Should abort (fail the case) if async id is not matching.

test/parallel/test-emit-after-uncaught-exception-runInAsyncScope.js

-40
This file was deleted.

0 commit comments

Comments
 (0)