Skip to content

Commit

Permalink
chore(internal): Use new DSN after leaked token (#3495)
Browse files Browse the repository at this point in the history
  • Loading branch information
krystofwoldrich authored Jan 5, 2024
1 parent 7af4f0b commit bfb0676
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion samples/react-native/src/dsn.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as Sentry from '@sentry/react-native';

export const SENTRY_INTERNAL_DSN =
'https://d870ad989e7046a8b9715a57f59b23b5@o447951.ingest.sentry.io/5428561';
'https://1df17bd4e543fdb31351dee1768bb679@o447951.ingest.sentry.io/5428561';

export const getCurrentDsn = () => {
return Sentry.getCurrentHub().getClient()?.getOptions().dsn;
Expand Down
2 changes: 1 addition & 1 deletion test/perf/TestAppSentry/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import {
import * as Sentry from '@sentry/react-native';

Sentry.init({
dsn: 'https://d870ad989e7046a8b9715a57f59b23b5@o447951.ingest.sentry.io/5428561',
dsn: 'https://1df17bd4e543fdb31351dee1768bb679@o447951.ingest.sentry.io/5428561',
});

const Section = ({children, title}): Node => {
Expand Down
2 changes: 1 addition & 1 deletion test/react-native/rn.patch.app.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import { EndToEndTestsScreen } from 'sentry-react-native-e2e-tests';
Sentry.init({
release: '${SENTRY_RELEASE}',
dist: '${SENTRY_DIST}',
dsn: 'https://d870ad989e7046a8b9715a57f59b23b5@o447951.ingest.sentry.io/5428561',
dsn: 'https://1df17bd4e543fdb31351dee1768bb679@o447951.ingest.sentry.io/5428561',
});
`;
const e2eComponentPatch = '<EndToEndTestsScreen />';
Expand Down

0 comments on commit bfb0676

Please sign in to comment.