You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Try to use any --action that calls verify_oauth2_token
Expected outcome (what are you trying to do?): Still works.
Actual outcome (what errors or bad behavior do you see instead?): ValueError: Token used too early, 1642758070 < 1642758071. Check that your computer's clock is set correctly.
If you could add clock_skew_in_seconds=10 to your calls you should be able to cut issue volume without sacrificing security. This option was added in 2.4.0 of the auth library: googleapis/google-auth-library-python#894 - earlier versions had a baked-in value of 10 seconds, then there were a bunch of changes to the library that broke compatibility and for some reason they left the default in newer versions at 0, which breaks often in the real world.
The text was updated successfully, but these errors were encountered:
Full steps to reproduce the issue:
--action
that callsverify_oauth2_token
Expected outcome (what are you trying to do?): Still works.
Actual outcome (what errors or bad behavior do you see instead?):
ValueError: Token used too early, 1642758070 < 1642758071. Check that your computer's clock is set correctly.
If you could add
clock_skew_in_seconds=10
to your calls you should be able to cut issue volume without sacrificing security. This option was added in 2.4.0 of the auth library: googleapis/google-auth-library-python#894 - earlier versions had a baked-in value of 10 seconds, then there were a bunch of changes to the library that broke compatibility and for some reason they left the default in newer versions at0
, which breaks often in the real world.The text was updated successfully, but these errors were encountered: