From 42321bafd38a8bd806f4d01bfa0eda3b5a961667 Mon Sep 17 00:00:00 2001 From: arithmetic1728 <58957152+arithmetic1728@users.noreply.github.com> Date: Thu, 6 Aug 2020 16:50:06 -0700 Subject: [PATCH] fix: reduce refresh clock skew to 10 seconds (#581) --- google/auth/_helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/google/auth/_helpers.py b/google/auth/_helpers.py index ecb88ffda..21c987a73 100644 --- a/google/auth/_helpers.py +++ b/google/auth/_helpers.py @@ -22,7 +22,7 @@ from six.moves import urllib -CLOCK_SKEW_SECS = 300 # 5 minutes in seconds +CLOCK_SKEW_SECS = 10 # 10 seconds CLOCK_SKEW = datetime.timedelta(seconds=CLOCK_SKEW_SECS)