Skip to content

Commit

Permalink
try this instead
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhiPrasad committed Jul 6, 2023
1 parent d195211 commit af3dd18
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/remix/test/integration/app_v1/entry.client.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { useEffect } from 'react';

Sentry.init({
dsn: 'https://public@dsn.ingest.sentry.io/1337',
tracesSampler: () => true,
tracesSampleRate: 1,
integrations: [
new Sentry.BrowserTracing({
routingInstrumentation: Sentry.remixRouterInstrumentation(useEffect, useLocation, useMatches),
Expand Down
2 changes: 1 addition & 1 deletion packages/remix/test/integration/app_v1/entry.server.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import * as Sentry from '@sentry/remix';
Sentry.init({
dsn: 'https://public@dsn.ingest.sentry.io/1337',
tracesSampleRate: 1,
tracePropagationTargets: [/^(?!.*routes).*$/],
tracePropagationTargets: [/^(?!.*^\/).*$/],
// Disabling to test series of envelopes deterministically.
autoSessionTracking: false,
});
Expand Down
2 changes: 1 addition & 1 deletion packages/remix/test/integration/app_v2/entry.server.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import * as Sentry from '@sentry/remix';
Sentry.init({
dsn: 'https://public@dsn.ingest.sentry.io/1337',
tracesSampleRate: 1,
tracePropagationTargets: [/^(?!.*routes).*$/],
tracePropagationTargets: [/^(?!.*^\/).*$/],
// Disabling to test series of envelopes deterministically.
autoSessionTracking: false,
});
Expand Down

0 comments on commit af3dd18

Please sign in to comment.