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: stream forwarder silently drops events on send failure
When the stream receiver's buffer was full or the receiver was dropped,
the forwarder would set `forward_enabled = false` but continue consuming
events from `runtime_rx` without forwarding them. This caused the final
`End` event (containing the response text) to be silently discarded,
resulting in empty output from session.stream.
Fix: break out of the forwarder loop immediately when `tx.send()` fails
rather than continuing to consume events. Also add a warn log for
debugging.
Also bump version to 1.9.2 and fix a3s-code-node dependency on core
(was pointing to 1.9.0 instead of matching workspace version).
0 commit comments