Swarming: Patches Auth default credentials at startup#5245
Draft
Swarming: Patches Auth default credentials at startup#5245
Conversation
IvanBM18
commented
Apr 15, 2026
|
|
||
| def patched_default_credentials( | ||
| *args, **kwargs) -> tuple[compute_engine.Credentials, str] | None: | ||
| # pylint: disable=unused-argument |
Collaborator
Author
There was a problem hiding this comment.
Note: We have the args and kwargs in the method signature because otherwise if we call the default() method with any args an exception would be thrown because the patch didn't matched the expected signature.
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.
Fuzzing tasks ins warming have an intermittent error in which startup of any gcp lirbary or module fails with:
This happens because the timeout for calling the default credentials times out because credentials coming from
luci-authdoesn't always comes fast enough for the internal gcp libraries.To fix this, we are manually patching the
google.auth.defaultmodule to return some credentials that do come from the swarming bot.Note: This is a draft since
devtesting is still in progress, will open the PR whendevtesting is finished.