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: batch outbox flush (latest-first) and log backoff errors
flushOutbox previously sent the entire pendingOutbox in one POST.
On --resume with 400+ historical messages, this payload was too large
and failed silently (backoff retried forever with no logging),
permanently blocking all subsequent agent messages.
- Batch flushOutbox into max 50 items per POST, sending from the end
first so the user sees the latest messages immediately
- Add error logging to global backoff so failures are never silent
Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)
Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>
0 commit comments