Skip to content

Commit 9e177e3

Browse files
committed
if ci doesn't work
1 parent f405b04 commit 9e177e3

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

packages/nextjs/test/integration/sentry.edge.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import * as Sentry from '@sentry/nextjs';
22

33
Sentry.init({
44
dsn: 'https://[email protected]/1337',
5-
tracesSampler: () => true,
5+
tracesSampleRate: 1.0,
6+
tracePropagationTargets: ['http://example.com'],
67
debug: process.env.SDK_DEBUG,
78
});

packages/nextjs/test/integration/sentry.server.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ import * as Sentry from '@sentry/nextjs';
22

33
Sentry.init({
44
dsn: 'https://[email protected]/1337',
5-
tracesSampler: () => true,
5+
tracesSampleRate: 1.0,
6+
tracePropagationTargets: ['http://example.com'],
67
debug: process.env.SDK_DEBUG,
78

89
integrations: defaults => [

0 commit comments

Comments
 (0)