You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(node): Capture exceptions from worker_threads (#15105)
Updates the `childProcessIntegration` to capture `worker_threads` errors
(including their stack traces) rather than capturing a breadcrumb.
This features is enabled by default and can be disabled by setting the
`captureWorkerErrors` option to `false`:
```ts
Sentry.init({
dsn: 'https://[email protected]/1337',
integrations: [Sentry.childProcessIntegration({ captureWorkerErrors: false })],
});
```
When `captureWorkerErrors: false`, a breadcrumb will be captured
instead.
This PR also adds more integration tests for the
`childProcessIntegration`.
0 commit comments