From 7a6001890ebaa3dd3543b5942c1cc2a5af12d8d3 Mon Sep 17 00:00:00 2001
From: franz <franzns11@gmail.com>
Date: Fri, 12 Jan 2024 14:51:06 +0100
Subject: [PATCH] removing sentry integrations

---
 app.ts           | 6 +++---
 worker/worker.ts | 8 ++++----
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/app.ts b/app.ts
index 6151bbaff..2a4071599 100644
--- a/app.ts
+++ b/app.ts
@@ -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(),
diff --git a/worker/worker.ts b/worker/worker.ts
index 375a8095a..9ef3cf5bb 100644
--- a/worker/worker.ts
+++ b/worker/worker.ts
@@ -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(),
         ],