Node: 'uncaughtException' event not working with unhandled promises

Created on 17 Apr 2020  路  5Comments  路  Source: nodejs/node

  • Version: 13.3.0
  • Platform: Win 10 64-bit
  • Subsystem: Process

What steps will reproduce the bug?

process.on('uncaughtException', (err, origin) =>
{
    console.log('catch: ' + err.message + ' | ' + origin);
    console.log();
});

examplePromise();

function examplePromise()
{
    return Promise.reject('Test');
}

What is the expected behavior?

According to the documentation default node handling should be overwritten by this callback with unhandledRejection origin

What do you see instead?

(node:14784) UnhandledPromiseRejectionWarning: Test
(node:14784) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
(node:14784) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

Additional information

I think that is probably an error that documentation and origin variable suggests that uncaughtException can handle promises when we have unhandledRejection event.

doc

Most helpful comment

FWIW, I just read through the docs, and I agree that they are confusing in this regard.

All 5 comments

You have an unhandled rejection, not an uncaught exception. They aren't the same thing. You could try looking into the --unhandled-rejections CLI flag though. The strict mode should do what you want.

FWIW, I just read through the docs, and I agree that they are confusing in this regard.

I see that this issue is inactive so to work on any fix the more information are needed:

  1. What is the purpose of origin?
  2. Why according to documentation there are two ways to handle the same thing unhandledRejection (origin argument) and unhandledRejection (event)
  3. Is that documentation issue or codebase issue?

@MrBartusek I opened #33530 to improve the documentation. Does that clarify the origin argument and the purpose of it?

@BridgeAR Yes! That clarifies everything, thanks

Was this page helpful?
0 / 5 - 0 ratings

Related issues

addaleax picture addaleax  路  3Comments

Brekmister picture Brekmister  路  3Comments

stevenvachon picture stevenvachon  路  3Comments

vsemozhetbyt picture vsemozhetbyt  路  3Comments

mcollina picture mcollina  路  3Comments