-
Notifications
You must be signed in to change notification settings - Fork 10.9k
fix: remove failed user content from history to prevent cascading 400 errors #17064
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
Conversation
|
Hi @jackwotherspoon, thank you so much for your contribution to Gemini CLI! We really appreciate the time and effort you've put into this. We're making some updates to our contribution process to improve how we track and review changes. Please take a moment to review our recent discussion post: Improving Our Contribution Process & Introducing New Guidelines. Key Update: Starting January 26, 2026, the Gemini CLI project will require all pull requests to be associated with an existing issue. Any pull requests not linked to an issue by that date will be automatically closed. Thank you for your understanding and for being a part of our community! |
Summary of ChangesHello @jackwotherspoon, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request addresses a critical bug where API 400 errors would lead to a corrupted conversation history, causing all subsequent interactions to fail. The change ensures that any user content associated with a failed API request is immediately removed from the history. This proactive removal prevents the invalid state from persisting, thereby making the conversation recoverable and eliminating the need to clear the session or restart the application after an API error. Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
|
Size Change: +642 B (0%) Total Size: 23.2 MB ℹ️ View Unchanged
|
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.
Code Review
This pull request aims to fix an issue where failed API requests would corrupt the conversation history, leading to subsequent errors. The approach of removing the user's content from history upon failure is correct. However, the implementation for connection-phase errors has a critical flaw: it unconditionally removes the content and throws the error, which prevents the retry mechanism from engaging for recoverable errors like 5xx server issues. My review includes a critical comment with a suggested fix to ensure that retries can still happen for recoverable connection-phase errors, and the history is only popped for non-retryable failures or after all retries are exhausted.
|
Hi there! Thank you for your contribution to Gemini CLI. We really appreciate the time and effort you've put into this pull request. To keep our backlog manageable and ensure we're focusing on current priorities, we are closing pull requests that haven't seen maintainer activity for 30 days. Currently, the team is prioritizing work associated with 🔒 maintainer only or help wanted issues. If you believe this change is still critical, please feel free to comment with updated details. Otherwise, we encourage contributors to focus on open issues labeled as help wanted. Thank you for your understanding! |
Summary
Note: This PR does not fix the cause of the 400 errors, just makes them recoverable. Previously if they happened the session was toast and would need a
/clearor full close.Previous
Now
Problem
We save user content to history, even corrupt content such as when API returns a 400 error. Previously, this invalid content remained in the conversation history, causing every subsequent request to include it and fail with the same 400 error.
Solution
Call
history.pop()to remove the failed user content when an error occurs, in both:This ensures invalid content doesn't persist in history and break the session.
Related Issues
How to Validate
Pre-Merge Checklist