mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 21:19:50 +01:00
618fcbd125
The promise hook has been disabled asynchronously in order to solve issues when an async hook is disabled during a microtask. This means that after scheduling the disable-promise-hook call, attempts to enable it synchronously will later be unintentionally overridden. In order to solve this, make sure that the promise hooks are still no longer desired at the time at which we would disable them. Fixes: https://github.com/nodejs/node/issues/27585 PR-URL: https://github.com/nodejs/node/pull/27590 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
18 lines
525 B
JavaScript
18 lines
525 B
JavaScript
'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/27585.
|
|
|
|
async_hooks.createHook({ init: () => {} }).enable().disable().enable();
|
|
async_hooks.createHook({ init: () => {} }).enable();
|
|
|
|
async function main() {
|
|
const initialAsyncId = async_hooks.executionAsyncId();
|
|
await 0;
|
|
assert.notStrictEqual(async_hooks.executionAsyncId(), initialAsyncId);
|
|
}
|
|
|
|
main().then(common.mustCall());
|