fix(amplitude-session): recover lastEventTime on partial persist#1198
Open
fix(amplitude-session): recover lastEventTime on partial persist#1198
Conversation
… Fetch iOS Background Fetch can briefly trigger AppState 'active' without user interaction, causing rapid session creation/destruction cycles. Add a 1-second timestamp guard in onForeground() to prevent new sessions from starting within 1 second of the last session creation. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Replace incorrect 1-second timestamp guard with proper root cause fix. The 0-second session bug is caused by non-atomic AsyncStorage persistence: when the app is killed (e.g. during iOS Background Fetch), sessionId may persist while lastEventTime does not. On relaunch, lastEventTime === -1 with a valid sessionId falsely triggers session expiration, ending the just-created session immediately. The fix recovers lastEventTime from sessionId when partial persistence is detected, preventing the false expiration. Also adds hypothesis-driven reproduction tests that verify the fix. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fix 0-second sessions in Amplitude Session plugin on iOS when Background Fetch is enabled.
Changes
startNewSessionIfNecessary()for partial AsyncStorage persistencelastEventTimefromsessionIdwhenlastEventTime === -1butsessionId >= 0lastEventTime === -1fromisSessionExpiredcheck (now handled by recovery)onForeground()Why
Plugin persists
sessionIdandlastEventTimevia independent fire-and-forget writes. If app is killed before all writes complete (common during iOS Background Fetch),sessionIdmay persist whilelastEventTimedoesn't. On next launch,lastEventTime === -1with validsessionIdfalsely triggers session expiration, ending the just-created session immediately.🤖 Generated with Claude Code