Skip to content

fix(auth): fix request session error #16050

Open
daniel-sanche wants to merge 5 commits intomainfrom
auth_fix_request_session
Open

fix(auth): fix request session error #16050
daniel-sanche wants to merge 5 commits intomainfrom
auth_fix_request_session

Conversation

@daniel-sanche
Copy link
Contributor

Fixes #16035

Some requests have no session attribute, which resulted in an exception being thrown. This fix does an extra check for the missing field

Thanks @sakshamgoyal-01 for the detailed bug report!

@daniel-sanche daniel-sanche requested review from a team as code owners March 7, 2026 00:42
@gemini-code-assist
Copy link
Contributor

Summary of Changes

Hello, 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 resolves a critical bug where the authentication process would fail if a request object did not possess a 'session' attribute, leading to an AttributeError. The change enhances the robustness of the system by adding a preliminary check for the attribute's existence, ensuring that mTLS setup proceeds smoothly without unexpected exceptions. This improves the overall stability and reliability of authentication flows.

Highlights

  • Bug Fix: Addressed an AttributeError that occurred when a request object lacked a session attribute during mTLS setup, preventing crashes in authentication processes.
  • Robustness: Implemented a check using hasattr() to safely determine if the session attribute exists on the request object before attempting to access it.
  • Testing: Introduced a new regression test case to specifically validate the fix for the AttributeError scenario, ensuring the issue does not reoccur.
Changelog
  • packages/google-auth/google/auth/compute_engine/_metadata.py
    • Modified the _prepare_request_for_mds function to include a hasattr check for the session attribute on the request object before attempting to access it, preventing an AttributeError.
  • packages/google-auth/tests/compute_engine/test__metadata.py
    • Added a new test case, test__prepare_request_for_mds_mtls_attribute_error, to specifically test the scenario where a request object initially lacks a session attribute, ensuring the fix works as expected.
Using Gemini Code Assist

The 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 /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

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 .gemini/ folder in the base of the repository. Detailed instructions can be found here.

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

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a 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 correctly fixes an AttributeError that occurred when a request object was missing the session attribute. The fix involves adding a check for the attribute's existence before use, and a new regression test has been added to cover this case. I have one suggestion to make the code slightly more concise and Pythonic.

daniel-sanche and others added 2 commits March 6, 2026 16:46
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
# Ensure the request has a session to mount the adapter to.
if not request.session:
if not getattr(request, "session", None):
request.session = requests.Session()
Copy link
Contributor Author

@daniel-sanche daniel-sanche Mar 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thinking about this some more, is this safe? Should we be attaching a session to a request that wasn't designed to hold one? Or should we drop mtls in that situation?

It looks like some tests fail if we drop mtls. But We should confirm the intention before merging this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

requests has not attribute session

1 participant