Skip to content

Commit

Permalink
removing sentry integrations (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
franzns committed Jan 12, 2024
1 parent 6b7ae90 commit 1f0ae92
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ async function startServer() {
enabled: env.NODE_ENV === 'production',
ignoreErrors: [/.*error: Provide.*chain.*param/],
integrations: [
new Sentry.Integrations.Apollo(),
new Sentry.Integrations.GraphQL(),
new Sentry.Integrations.Prisma({ client: prisma }),
// new Sentry.Integrations.Apollo(),
// new Sentry.Integrations.GraphQL(),
// new Sentry.Integrations.Prisma({ client: prisma }),
new Sentry.Integrations.Express({ app }),
new Sentry.Integrations.Http({ tracing: true }),
new ProfilingIntegration(),
Expand Down
8 changes: 4 additions & 4 deletions worker/worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ export async function startWorker() {
environment: `multichain-worker-${env.DEPLOYMENT_ENV}`,
enabled: env.NODE_ENV === 'production',
integrations: [
new Sentry.Integrations.Apollo(),
new Sentry.Integrations.GraphQL(),
new Sentry.Integrations.Prisma({ client: prisma }),
new Sentry.Integrations.Express({ app }),
// new Sentry.Integrations.Apollo(),
// new Sentry.Integrations.GraphQL(),
// new Sentry.Integrations.Prisma({ client: prisma }),
// new Sentry.Integrations.Express({ app }),
new Sentry.Integrations.Http({ tracing: true }),
new ProfilingIntegration(),
],
Expand Down

0 comments on commit 1f0ae92

Please sign in to comment.