X Tutup
The Wayback Machine - https://web.archive.org/web/20220319164637/https://github.com/nodejs/node/commit/4a768bc13b
Skip to content
Permalink
Browse files
doc: upgrade stability status of report API
The property `process.report.reportOnFatalError`
was deemed experimental, as it was not honored
under certain scenarios (for example out of memory
conditions). The report configuration were previously
stored on the `environment` structure which was not
available on these types of fatal error cases.

The referenced PR has addressed this case (sometime
back), and the property is working as intended.

Refs: #32207
PR-URL: #35654
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Beth Griggs <bgriggs@redhat.com>
  • Loading branch information
gireeshpunathil authored and MylesBorins committed Apr 6, 2021
1 parent 01ba1c9 commit 4a768bc13bc2f6b58ec9d03f8e4115e2e65b4ab8
Showing with 4 additions and 2 deletions.
  1. +4 −2 doc/api/process.md
@@ -1898,10 +1898,12 @@ Additional documentation is available in the [report documentation][].
### `process.report.reportOnFatalError`
<!-- YAML
added: v11.12.0
changes:
- version:
- REPLACEME
description: This API is no longer experimental.
-->

> Stability: 1 - Experimental
* {boolean}

If `true`, a diagnostic report is generated on fatal errors, such as out of

0 comments on commit 4a768bc

Please sign in to comment.
X Tutup