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(antigravity): throttle the lazy expiry scan (CI ubuntu timeout fix)
Every observe/apply ran an O(sessions) expiry scan; at the 10,240 cap
that is O(n^2), and the worst-case fixed-key test exceeded the ubuntu
CI test timeout. The 60s state-store sweeper is already the periodic
expiry authority, so lazy scans are throttled to one per 30s. The
worst-case test now runs in ~50ms and carries a 30s budget guard.
0 commit comments