mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
9fdb6e6aaf
Remove the need for the destroy hook in the basic APM case. Co-authored-by: Stephen Belanger <admin@stephenbelanger.com> PR-URL: https://github.com/nodejs/node/pull/30959 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Vladimir de Turckheim <vlad2t@hotmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
31 lines
663 B
JavaScript
31 lines
663 B
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const {
|
|
executionAsyncResource,
|
|
executionAsyncId,
|
|
createHook,
|
|
} = require('async_hooks');
|
|
const http = require('http');
|
|
|
|
const hooked = {};
|
|
createHook({
|
|
init(asyncId, type, triggerAsyncId, resource) {
|
|
hooked[asyncId] = resource;
|
|
}
|
|
}).enable();
|
|
|
|
const server = http.createServer((req, res) => {
|
|
res.end('ok');
|
|
});
|
|
|
|
server.listen(0, () => {
|
|
assert.strictEqual(executionAsyncResource(), hooked[executionAsyncId()]);
|
|
|
|
http.get({ port: server.address().port }, () => {
|
|
assert.strictEqual(executionAsyncResource(), hooked[executionAsyncId()]);
|
|
server.close();
|
|
});
|
|
});
|