Fix log statement in exponential backoff for platform

This commit is contained in:
Mark Veidemanis 2023-03-11 17:11:22 +00:00
parent 70d0aad046
commit a314a09154
Signed by: m
GPG Key ID: 5ACFCEED46C0904F
1 changed files with 4 additions and 2 deletions

View File

@ -57,8 +57,10 @@ class LocalPlatformClient(ABC):
else:
if throttled != 0:
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
throttled = 0