You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: update memory cache before persistent store to prevent race condition
When multiple concurrent operations access the state store, there was a race
condition where GET requests could read stale cached data while the persistent
store was being updated. This fix ensures the memory cache is updated first,
preventing other threads from reading stale data during the update window.
This change affects both update() and store() methods in StateStore.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
0 commit comments