fix: Gemini session output rendering, session resume after page refresh#179
Merged
everett4320 merged 1 commit intoOpenLAIR:redo-session-lifecycle-after-167-revertfrom Apr 15, 2026
Conversation
- Extend temporary session rebind logic to cover Gemini (previously Codex-only), fixing the race where gemini-response messages arrive before React updates activeViewSessionId from the new-session-* placeholder. - Add WebSocketWriter.replaceSocket() hot-swap method and store writer references in all provider session maps (Claude SDK, Codex, Gemini, OpenRouter, Local GPU, Nano). On check-session-status, if the session is still running, rebind the writer to the reconnected WebSocket so messages reach the new client. - Increase STATUS_VALIDATION_TIMEOUT_MS from 5s to 10s and guard the timeout effect with a !ws check so it only starts counting after the WebSocket connects. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
08f861c
into
OpenLAIR:redo-session-lifecycle-after-167-revert
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.
Extend temporary session rebind logic to cover Gemini (previously Codex-only), fixing the race where gemini-response messages arrive before React updates activeViewSessionId from the new-session-* placeholder.
Add WebSocketWriter.replaceSocket() hot-swap method and store writer references in all provider session maps (Claude SDK, Codex, Gemini, OpenRouter, Local GPU, Nano). On check-session-status, if the session is still running, rebind the writer to the reconnected WebSocket so messages reach the new client.
Increase STATUS_VALIDATION_TIMEOUT_MS from 5s to 10s and guard the timeout effect with a !ws check so it only starts counting after the WebSocket connects.