-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
fix(cua-driver): let start_session revive an idle-reaped session (recover from "session ended") #2035
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
fix(cua-driver): let start_session revive an idle-reaped session (recover from "session ended") #2035
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🩺 Stability & Availability | 🟠 Major
🧩 Analysis chain
🏁 Script executed:
Repository: trycua/cua
Length of output: 10236
revive_sessionclears the session tombstone but not the overlay-layer cursor tombstone — revived sessions will fail to render cursors.The cursor overlay (
platform-macos/src/overlay.rs) maintains a separateended: HashSet<CursorKey>that permanently blocks command processing for tombstoned keys. As seen in lines 143–145 and 255–257 ofoverlay.rs, anyCmdorseed_startfor a key in this set is silently dropped to prevent "ghost-cursor resurrection."revive_sessioninsession.rs(lines 138–152) correctly clears the session-layer tombstone (ended_sessions) but fails to clear the overlay-layer tombstone. Consequently:session_id.session_tools.rs(line 79).Add a call to clear the overlay tombstone (e.g., via a
fire_session_revivehook that removes thesession_idfromRenderState::ended) to ensure the render layer respects the session lifecycle reset.Relevant code sections
session.rs:overlay.rs(guard logic):🤖 Prompt for AI Agents