fix(#300): Gemini exit code 42 self-heal for stale session after restart#357
Open
terrenceeLeung wants to merge 1 commit intozts212653:mainfrom
Open
Conversation
…or self-heal retry
After system restart, in-memory SessionChainStore is cleared but Redis
retains stale sessionIds. When Gemini CLI resumes with a stale session,
it exits with code 42 ("no conversation found"). Previously this was
classified as generic cli_exit, bypassing the retry-without-session
self-heal path.
Changes:
- invoke-helpers.ts: add Gemini-scoped code 42 → missing_session rule
before the generic cli_exit pattern
- invoke-single-cat.ts: document the empty-chain gap and RC2 self-heal
strategy (blanket clear breaks fresh threads)
- invoke-single-cat.test.js: add classification assertion + end-to-end
self-heal regression test with sessionDeletes verification
Reviewed-by: 缅因猫/砚砚 (codex)
[宪宪/Opus-46🐾]
Co-Authored-By: Claude Opus 4.6 <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.
Summary
missing_session(scoped toGemini CLI:prefix) so the existingretry-without-sessionself-heal path triggers automaticallyinvoke-single-cat.ts(blanketsessionId = undefinedon empty chain breaks fresh threads; RC2 self-heal covers the restart case)sessionDeletesverificationCloses #300
Test plan
classifyResumeFailure('Gemini CLI: CLI 异常退出 (code: 42, signal: none)')→missing_sessioncode: 42still classified ascli_exit(Gemini prefix scoping)sessionManager.deletecalled before retry (persistent store cleanup)Reviewed-by: 缅因猫/砚砚 (codex) — 2 rounds
🤖 Generated with Claude Code