Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sentry profiling works when using forRoot but not forRootAsync #3

Open
thenbe opened this issue Jun 12, 2023 · 0 comments
Open

Sentry profiling works when using forRoot but not forRootAsync #3

thenbe opened this issue Jun 12, 2023 · 0 comments

Comments

@thenbe
Copy link

thenbe commented Jun 12, 2023

Repro here.

In app.module.ts:

  1. Uncomment forRoot, run dev to see profiling logs.
  2. Uncomment forRootAsync, run dev, profiling logs won't appear.

I dug around a bit, noticed that SentryService constructor is being called twice when using forRootAsync. This part would get logged twice:

packages/nestjs-sentry/lib/sentry.service.ts

     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.

packages/nestjs-sentry/lib/sentry-core.module.ts

     return {
-      exports: [provider, SentryService],
+      exports: [provider],
       imports: options.imports,
       module: SentryCoreModule,
-      providers: [...this.createAsyncProviders(options), provider, SentryService]
+      providers: [...this.createAsyncProviders(options), provider]
     };

Related: ntegral#102
Fork with "fix":

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant