From 0070fc10f82e38e05b15c26f98d471f63177afa1 Mon Sep 17 00:00:00 2001 From: Paul Rastoin <45004772+prastoin@users.noreply.github.com> Date: Wed, 29 Oct 2025 15:34:47 +0100 Subject: [PATCH] Debug sentry redis integration (#15431) --- packages/twenty-server/src/instrument.ts | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/packages/twenty-server/src/instrument.ts b/packages/twenty-server/src/instrument.ts index 3c194cafec..dd9c5de4ac 100644 --- a/packages/twenty-server/src/instrument.ts +++ b/packages/twenty-server/src/instrument.ts @@ -15,7 +15,6 @@ import { NodeEnvironment } from 'src/engine/core-modules/twenty-config/interface import { ExceptionHandlerDriver } from 'src/engine/core-modules/exception-handler/interfaces'; import { MeterDriver } from 'src/engine/core-modules/metrics/types/meter-driver.type'; -import { WORKSPACE_CACHE_KEYS } from 'src/engine/workspace-cache-storage/workspace-cache-storage.service'; import { parseArrayEnvVar } from 'src/utils/parse-array-env-var'; const meterDrivers = parseArrayEnvVar( @@ -30,12 +29,7 @@ if (process.env.EXCEPTION_HANDLER_DRIVER === ExceptionHandlerDriver.SENTRY) { release: process.env.APP_VERSION, dsn: process.env.SENTRY_DSN, integrations: [ - // TODO: Redis integration doesn't seem to work - investigate why - Sentry.redisIntegration({ - cachePrefixes: Object.values(WORKSPACE_CACHE_KEYS).map( - (key) => `engine:${key}:`, - ), - }), + Sentry.redisIntegration(), Sentry.httpIntegration(), Sentry.expressIntegration(), Sentry.graphqlIntegration(),