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
Making the following change will make the constructor run only once. It also fixes this issue. However, I'm not familiar with nest's DI system enough to know whether this will break something for other folks.
Repro here.
In app.module.ts:
forRoot
, rundev
to see profiling logs.forRootAsync
, rundev
, profiling logs won't appear.I dug around a bit, noticed that
SentryService
constructor is being called twice when usingforRootAsync
. This part would get logged twice:const { integrations = [], ...sentryOptions } = opts; + console.log('constructor - SentryService'); Sentry.init({
Making the following change will make the constructor run only once. It also fixes this issue. However, I'm not familiar with nest's DI system enough to know whether this will break something for other folks.
Related: ntegral#102
Fork with "fix":
The text was updated successfully, but these errors were encountered: