We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
maxWait
1 parent 1cf8988 commit b66559fCopy full SHA for b66559f
packages/replay/src/constants.ts
@@ -22,7 +22,9 @@ export const MAX_SESSION_LIFE = 3_600_000; // 60 minutes
22
23
/** Default flush delays */
24
export const DEFAULT_FLUSH_MIN_DELAY = 5_000;
25
-export const DEFAULT_FLUSH_MAX_DELAY = 5_000;
+// XXX: Temp fix for our debounce logic where `maxWait` would never occur if it
26
+// was the same as `wait`
27
+export const DEFAULT_FLUSH_MAX_DELAY = 5_500;
28
29
/* How long to wait for error checkouts */
30
export const ERROR_CHECKOUT_TIME = 60_000;
0 commit comments