From 50cf5e60b74729f3758caf2080d73bf2ab095d1e Mon Sep 17 00:00:00 2001 From: Dannon Baker Date: Tue, 30 Jul 2024 11:27:00 -0400 Subject: [PATCH] Don't enable session replay by default -- we're going to have users opt in to this. --- client/src/onload/globalInits/initSentry.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/client/src/onload/globalInits/initSentry.js b/client/src/onload/globalInits/initSentry.js index c5a32648bd04..9815743e8a3c 100644 --- a/client/src/onload/globalInits/initSentry.js +++ b/client/src/onload/globalInits/initSentry.js @@ -19,9 +19,7 @@ export const initSentry = (galaxy, config) => { Sentry.init({ Vue, dsn: sentry_dsn_public, - integrations: [Sentry.browserTracingIntegration({ router }), Sentry.replayIntegration()], - replaysSessionSampleRate: 0, - replaysOnErrorSampleRate: 1.0, + integrations: [Sentry.browserTracingIntegration({ router })], release: release, beforeSend(event, hint) { const error = hint.originalException;