Dev - #22
Open
aceleisureman wants to merge 19 commits into
Open
Conversation
- Retry stream send after evicting stale connection on failure - Add InputDebugInfo/InputDebugEvent types for input diagnostics - Bump version to 0.9.8
- Move read_sync_history and read_log_lines off the tokio async runtime via spawn_blocking so log file reads no longer block async tasks (QUIC transport, device discovery). - Fix borrow-after-move in inject_input_event by computing coordinates before the command is moved. - Switch dev server port to 5174.
…d-bugfixes # Conflicts: # src-tauri/src/input.rs # src-tauri/src/lib.rs # src/App.tsx
fc221
added a commit
that referenced
this pull request
Jul 14, 2026
The transport loop serially awaited every command: a dead peer's 2s connect timeout (hit every ~3s by discovery warming and every 2s by clipboard retries) or one 48MB stream write stalled every queued input datagram behind it — the periodic input freezes and the 'QUIC send failed' warn line every few seconds for hours. - datagrams now send synchronously on established connections (quinn's send_datagram is not async) and never wait for a dial; a missing peer gets one background connect task, marked in the map so move bursts cannot spawn a connect storm - stream sends run in spawned tasks, capped by a semaphore (8 in flight) - consecutive-failure fast-fail per peer address (concept from PR #22): after 3 strikes the caller-facing handle returns an error immediately so the input layer releases the cursor, and dial attempts are muted to one probe per 3s window until the peer recovers - failure logging collapses to first-failure + entering-mute + recovery instead of one warn per attempt - drop the always-true ack_required plumbing Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.