We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb8be13 commit c3fac41Copy full SHA for c3fac41
packages/replay-internal/src/types/replay.ts
@@ -180,7 +180,10 @@ export interface ReplayPluginOptions extends ReplayNetworkOptions {
180
/**
181
* The min. duration (in ms) a replay has to have before it is sent to Sentry.
182
* Whenever attempting to flush a session that is shorter than this, it will not actually send it to Sentry.
183
- * Note that this is capped at max. 15s.
+ * Note that this is capped at max. 50s, so we don't unintentionally drop buffered replays that are longer than 60s
184
+ *
185
+ * Warning: Setting this to a higher value can result in unintended drops of onError-sampled replays.
186
187
*/
188
minReplayDuration: number;
189
0 commit comments