api: Fix undefined variable reference from previous commit.

This commit is contained in:
Mateusz Mandera 2020-03-14 10:42:50 +01:00 committed by Tim Abbott
parent 056963bedd
commit 8fc5b777db

View file

@ -95,7 +95,7 @@ class RandomExponentialBackoff(CountingBackoff):
# Exponential growth with ratio sqrt(2); compute random delay # Exponential growth with ratio sqrt(2); compute random delay
# between x and 2x where x is growing exponentially # between x and 2x where x is growing exponentially
delay_scale = int(2 ** (self.number_of_retries / 2.0 - 1)) + 1 delay_scale = int(2 ** (self.number_of_retries / 2.0 - 1)) + 1
delay = min(delay_scale + random.randint(1, delay_scale), delay_cap) delay = min(delay_scale + random.randint(1, delay_scale), self.delay_cap)
message = "Sleeping for %ss [max %s] before retrying." % (delay, delay_scale * 2) message = "Sleeping for %ss [max %s] before retrying." % (delay, delay_scale * 2)
try: try:
logger.warning(message) logger.warning(message)