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
Fixes 0-second sessions in the Amplitude Session plugin on iOS when Background Fetch is enabled.
Root cause: The plugin persists
sessionId,lastEventTime, andeventSessionIdto AsyncStorage via independent fire-and-forget writes in property setters. If the app is killed before all writes complete (common during iOS Background Fetch),sessionIdmay persist whilelastEventTimedoes not. On the next launch,lastEventTime === -1with a validsessionIdfalsely triggers session expiration, ending the just-created session immediately — producing a 0-second session.Fix: When
lastEventTime === -1butsessionId >= 0(indicating partial persistence), recoverlastEventTimefromsessionIdinstead of treating the session as expired. Also removes the incorrect 1-second timestamp guard fromonForeground()that was based on a disproven hypothesis.Changes
startNewSessionIfNecessary(): Add recovery logic for partial AsyncStorage persistencestartNewSessionIfNecessary(): RemovelastEventTime === -1fromisSessionExpired(now handled by recovery)onForeground(): Remove incorrect 1-second timestamp guardTest plan
lastEventTimerecovery fromsessionId🤖 Generated with Claude Code