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 890ad78 commit be6799eCopy full SHA for be6799e
packages/replay/src/replay.ts
@@ -319,9 +319,8 @@ export class ReplayContainer implements ReplayContainerInterface {
319
* Otherwise, queue up a flush.
320
*/
321
public async sendBufferedReplayOrFlush({ continueRecording = true }: SendBufferedReplayOptions = {}): Promise<void> {
322
- // if in session mode, call debounced flush
323
if (this.recordingMode === 'session') {
324
- return this._debouncedFlush() as Promise<void>;
+ return this.flushImmediate();
325
}
326
327
// Allow flush to complete before resuming as a session recording, otherwise
0 commit comments