fix: resolve executor compile regressions#267
fix: resolve executor compile regressions#267KooshaPari wants to merge 1 commit intorouter-for-me:mainfrom
Conversation
Summary of ChangesHello @KooshaPari, 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 several compile regressions by backporting targeted fixes across four files. The changes focus on improving security by sanitizing file paths, enhancing robustness through OIDC region validation, and refining code quality by cleaning up logging signatures and streamlining model fallback logic. The overall impact is a more stable and secure codebase. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
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
|
There was a problem hiding this comment.
Code Review
This pull request backports several compile fixes, improving security and robustness. The changes include path sanitization for token saving, OIDC region validation, a logging signature cleanup, and a model fallback path cleanup. My review includes a suggestion to remove a redundant and potentially insecure log statement and a minor improvement to an error message for better clarity.
| return fmt.Errorf("invalid token file path: %w", err) | ||
| } | ||
|
|
||
| misc.LogSavingCredentials(safePath) |
There was a problem hiding this comment.
This log statement correctly logs the sanitized path. However, there is a redundant log statement on line 51 that logs the original, unsanitized authFilePath. This could be a security risk as it might expose sensitive information or be vulnerable to log injection. Please remove the log statement on line 51.
| return defaultIDCRegion, nil | ||
| } | ||
| if !oidcRegionPattern.MatchString(trimmed) { | ||
| return "", fmt.Errorf("invalid OIDC region %q", region) |
There was a problem hiding this comment.
The error message uses the original region string, but the validation is performed on the trimmed string. For clarity and to avoid confusion when the region string contains leading or trailing whitespace, it's better to use the trimmed string in the error message.
| return "", fmt.Errorf("invalid OIDC region %q", region) | |
| return "", fmt.Errorf("invalid OIDC region %q", trimmed) |
Backports targeted compile fixes from previous work with minimal diff (4 files changed), including:\n\n- Kiro token path sanitization in Claude token save\n- Kiro OIDC region normalization/validation\n- Codex websocket disconnect logging signature cleanup\n- Kiro model fallback return path cleanup to keep map function parsing valid