Skip to content

Commit

Permalink
fix: reduce the clock skew back to 10 seconds
Browse files Browse the repository at this point in the history
clock skew has to be less than 30 seconds, see #581
  • Loading branch information
arithmetic1728 committed Sep 7, 2021
1 parent 45c4491 commit 0247766
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion google/auth/_helpers.py
Expand Up @@ -20,7 +20,9 @@
import urllib


CLOCK_SKEW_SECS = 60 # 60 seconds
# Clock skew has to be less than 30 seconds, see:
# https://github.com/googleapis/google-auth-library-python/pull/581
CLOCK_SKEW_SECS = 10 # 10 seconds
CLOCK_SKEW = datetime.timedelta(seconds=CLOCK_SKEW_SECS)


Expand Down

0 comments on commit 0247766

Please sign in to comment.