From 770fb61eceecab9bf10bbb5110c24b9e83212e37 Mon Sep 17 00:00:00 2001 From: Thorsten Schwander Date: Sun, 2 Jul 2017 13:25:22 -0600 Subject: [PATCH] WebAuthorProfile: fine-tuned retry timing Signed-off-by: Thorsten Schwander --- .../webauthorprofile/lib/webauthorprofile_corefunctions.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/webauthorprofile/lib/webauthorprofile_corefunctions.py b/modules/webauthorprofile/lib/webauthorprofile_corefunctions.py index e07b1bfec6..8c8b6579c8 100644 --- a/modules/webauthorprofile/lib/webauthorprofile_corefunctions.py +++ b/modules/webauthorprofile/lib/webauthorprofile_corefunctions.py @@ -104,11 +104,11 @@ def retry_if_precache_error(exception): @retry( - wait_exponential_multiplier=250, - wait_exponential_max=8000, + wait_exponential_multiplier=125, + wait_exponential_max=6000, retry_on_exception=retry_if_precache_error, wrap_exception=True, - stop_max_attempt_number=14 + stop_max_attempt_number=15 ) def update_cache(name, key, target, *args): '''