Skip to content

Commit 9ed9c23

Browse files
authored
feat(replay): Lower the flush max delay from 15 seconds to 5 seconds (#6761)
This means that we will only wait 5 seconds before flushing
1 parent a555cd8 commit 9ed9c23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/replay/src/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export const MASK_ALL_TEXT_SELECTOR = 'body *:not(style), body *:not(script)';
3131

3232
/** Default flush delays */
3333
export const DEFAULT_FLUSH_MIN_DELAY = 5_000;
34-
export const DEFAULT_FLUSH_MAX_DELAY = 15_000;
34+
export const DEFAULT_FLUSH_MAX_DELAY = 5_000;
3535
export const INITIAL_FLUSH_DELAY = 5_000;
3636

3737
export const RETRY_BASE_INTERVAL = 5000;

0 commit comments

Comments
 (0)