Unverified Commit 257d9dc4 authored by Marius van den Beek's avatar Marius van den Beek Committed by GitHub
Browse files

Merge pull request #18622 from dannon/disable-replay-by-default

[24.1] Adjust sentry default config -- drop replay
parents 90b5251c 50cf5e60
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -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;