mirror of
https://github.com/nodejs/node.git
synced 2024-11-24 20:29:23 +01:00
fab3eff2e5
Refs: 4aca277f16
Refs: https://github.com/nodejs/node/pull/30236
Fixes: https://github.com/nodejs/node/issues/31796
PR-URL: https://github.com/nodejs/node/pull/31801
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: David Carlier <devnexen@gmail.com>
30 lines
671 B
JavaScript
30 lines
671 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const asyncHooks = require('async_hooks');
|
|
const http = require('http');
|
|
|
|
// Regression test for https://github.com/nodejs/node/issues/31796
|
|
|
|
asyncHooks.createHook({
|
|
after: () => {}
|
|
}).enable();
|
|
|
|
|
|
process.once('uncaughtException', common.mustCall(() => {
|
|
server.close();
|
|
}));
|
|
|
|
const server = http.createServer(common.mustCall((request, response) => {
|
|
response.writeHead(200, { 'Content-Type': 'text/plain' });
|
|
response.end();
|
|
}));
|
|
|
|
server.listen(0, common.mustCall(() => {
|
|
http.get({
|
|
host: 'localhost',
|
|
port: server.address().port
|
|
}, common.mustCall(() => {
|
|
throw new Error('whoah');
|
|
}));
|
|
}));
|