Fix log statement in exponential backoff for platform
This commit is contained in:
parent
70d0aad046
commit
a314a09154
|
@ -57,8 +57,10 @@ class LocalPlatformClient(ABC):
|
||||||
else:
|
else:
|
||||||
if throttled != 0:
|
if throttled != 0:
|
||||||
log.info(
|
log.info(
|
||||||
f"Finally successful after {throttled}",
|
(
|
||||||
f" attempts to call {method}",
|
f"Finally successful after {throttled}"
|
||||||
|
f" attempts to call {method}"
|
||||||
|
)
|
||||||
)
|
)
|
||||||
returned_429 = False
|
returned_429 = False
|
||||||
throttled = 0
|
throttled = 0
|
||||||
|
|
Loading…
Reference in New Issue