Skip to content

Commit 4270d4a

Browse files
authored
ref(sdk): Move back to 5000ms idleTimeout (#32564)
This removes the push to a higher idleTimeout as well as disabling the reportAllChanges flag to ensure 5000ms is a decent default.
1 parent 255bd94 commit 4270d4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

static/app/bootstrap/initializeSdk.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ function getSentryIntegrations(hasReplays: boolean = false, routes?: Function) {
3131
),
3232
}
3333
: {}),
34-
idleTimeout: 10000,
34+
idleTimeout: 5000,
3535
_metricOptions: {
36-
_reportAllChanges: true,
36+
_reportAllChanges: false,
3737
},
3838
}),
3939
];

0 commit comments

Comments
 (0)