Skip to content

Commit 07dbf73

Browse files
committed
promise: hard deprecation for unhandled promise rejection
PR-URL: #8217 Reviewed-By: Chris Dickinson <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Jeremiah Senkpiel <[email protected]>
1 parent ecf474c commit 07dbf73

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

lib/internal/process/promises.js

+9
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ function setupPromises(scheduleMicrotasks) {
4545
}
4646
}
4747

48+
var deprecationWarned = false;
4849
function emitPendingUnhandledRejections() {
4950
let hadListeners = false;
5051
while (pendingUnhandledRejections.length > 0) {
@@ -59,6 +60,14 @@ function setupPromises(scheduleMicrotasks) {
5960
warning.name = 'UnhandledPromiseRejectionWarning';
6061
warning.id = uid;
6162
process.emitWarning(warning);
63+
if (!deprecationWarned) {
64+
deprecationWarned = true;
65+
process.emitWarning(
66+
'Unhandled promise rejections are deprecated. In the future, ' +
67+
'promise rejections that are not handled will terminate the ' +
68+
'Node.js process with a non-zero exit code.',
69+
'DeprecationWarning');
70+
}
6271
} else {
6372
hadListeners = true;
6473
}

test/parallel/test-promises-warning-on-unhandled-rejection.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,14 @@ process.on('warning', common.mustCall((warning) => {
1616
assert(/Unhandled promise rejection/.test(warning.message));
1717
break;
1818
case 1:
19+
assert.strictEqual(warning.name, 'DeprecationWarning');
20+
break;
21+
case 2:
1922
assert.strictEqual(warning.name, 'PromiseRejectionHandledWarning');
2023
assert(/Promise rejection was handled asynchronously/
2124
.test(warning.message));
2225
}
23-
}, 2));
26+
}, 3));
2427

2528
const p = Promise.reject('This was rejected');
2629
setImmediate(common.mustCall(() => p.catch(() => {})));

0 commit comments

Comments
 (0)