Skip to content

Commit facaf2d

Browse files
committed
always ignore parent sampling decision
1 parent 1d8e1f1 commit facaf2d

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Integrations } from '@sentry/tracing';
33

44
Sentry.init({
55
dsn: 'https://[email protected]/1337',
6-
tracesSampleRate: 1,
6+
tracesSampler: () => true,
77
debug: process.env.SDK_DEBUG,
88

99
integrations: [

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

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

33
Sentry.init({
44
dsn: 'https://[email protected]/1337',
5-
tracesSampleRate: 1,
5+
tracesSampler: () => true,
66
debug: process.env.SDK_DEBUG,
77
});

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

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

33
Sentry.init({
44
dsn: 'https://[email protected]/1337',
5-
tracesSampleRate: 1,
5+
tracesSampler: () => true,
66
debug: process.env.SDK_DEBUG,
77

88
integrations: defaults => [

packages/remix/test/integration/app_v1/entry.client.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { useEffect } from 'react';
55

66
Sentry.init({
77
dsn: 'https://[email protected]/1337',
8-
tracesSampleRate: 1,
8+
tracesSampler: () => true,
99
integrations: [
1010
new Sentry.BrowserTracing({
1111
routingInstrumentation: Sentry.remixRouterInstrumentation(useEffect, useLocation, useMatches),

packages/remix/test/integration/app_v1/entry.server.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import * as Sentry from '@sentry/remix';
55

66
Sentry.init({
77
dsn: 'https://[email protected]/1337',
8-
tracesSampleRate: 1,
8+
tracesSampler: () => true,
99
// Disabling to test series of envelopes deterministically.
1010
autoSessionTracking: false,
1111
});

0 commit comments

Comments
 (0)