Skip to content

Commit

Permalink
fix: rotate Sentry token
Browse files Browse the repository at this point in the history
Old Station versions are producing too many un-actionable issues. We
need to cut them off.

Related:
- #1606-

Signed-off-by: Miroslav Bajtoš <[email protected]>
  • Loading branch information
bajtos committed Jun 26, 2024
1 parent 0b47190 commit 4dee1b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main/setup-sentry.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const isDevBuild = BUILD_VERSION.endsWith('-dev')
// Disable Sentry integration for dev builds
if (!isDevBuild) {
Sentry.init({
dsn: 'https://ff9615d8516545158e186d863a06a0f1@o1408530.ingest.sentry.io/6762462',
dsn: 'https://8667b1c7749ae24e35ba531bffa3ed7a@o1408530.ingest.us.sentry.io/6762462',
release: BUILD_VERSION,
// Set tracesSampleRate to 1.0 to capture 100%
// of transactions for performance monitoring.
Expand Down
2 changes: 1 addition & 1 deletion renderer/src/components/Sentry.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const SentryComponent = () => {
if (window.electron.stationBuildVersion.endsWith('-dev')) { return }

Sentry.init({
dsn: 'https://ff9615d8516545158e186d863a06a0f1@o1408530.ingest.sentry.io/6762462',
dsn: 'https://8667b1c7749ae24e35ba531bffa3ed7a@o1408530.ingest.us.sentry.io/6762462',
integrations: [Sentry.browserTracingIntegration()],
release: window.electron.stationBuildVersion,
// Set tracesSampleRate to 1.0 to capture 100%
Expand Down

0 comments on commit 4dee1b9

Please sign in to comment.