fix(remoteingress-core): prevent stream data loss by applying backpressure and closing saturated channels

This commit is contained in:
2026-03-15 17:01:27 +00:00
parent 86d4e9889a
commit 4e9041c6a7
4 changed files with 31 additions and 13 deletions

View File

@@ -1,5 +1,11 @@
# Changelog
## 2026-03-15 - 4.4.1 - fix(remoteingress-core)
prevent stream data loss by applying backpressure and closing saturated channels
- replace non-blocking frame writes with awaited sends in per-stream tasks so large transfers respect backpressure instead of dropping data
- close and remove streams when back-channel or data channels fill up to avoid TCP stream corruption from silently dropped frames
## 2026-03-03 - 4.4.0 - feat(remoteingress)
add heartbeat PING/PONG and liveness timeouts; implement fast-reconnect/backoff reset and JS crash-recovery auto-restart