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(sse): saturate exponential backoff to prevent u32 overflow
ExponentialBackoff::retry computed 2u32.pow(current_times) which
overflows when current_times >= 32 (panics in debug, wraps in release).
Fix: saturate the multiplier at u32::MAX for current_times >= 32.
Fixes#1198
0 commit comments