Skip to content
This repository was archived by the owner on Mar 6, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion google/oauth2/_reauth_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ async def refresh_grant(
):
if not enable_reauth_refresh:
raise exceptions.RefreshError(
"Reauthentication is needed. Please run `gcloud auth login --update-adc` to reauthenticate."
"Reauthentication is needed. Please run `gcloud auth application-default login` to reauthenticate."
)

rapt_token = await get_rapt_token(
Expand Down
2 changes: 1 addition & 1 deletion google/oauth2/reauth.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ def refresh_grant(
):
if not enable_reauth_refresh:
raise exceptions.RefreshError(
"Reauthentication is needed. Please run `gcloud auth login --update-adc` to reauthenticate."
"Reauthentication is needed. Please run `gcloud auth application-default login` to reauthenticate."
)

rapt_token = get_rapt_token(
Expand Down