Skip to content

Commit

Permalink
client pycodestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaume committed Aug 16, 2022
1 parent 6744cdb commit 9bce163
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mpcontribs-client/mpcontribs/client/__init__.py
Expand Up @@ -452,7 +452,7 @@ def _load(protocol, host, headers_json, project):
if r.status_code != 200:
retries += 1
logger.warning(
f"Healthcheck for {url} failed (Status {r.status_code})! Waiting 60s ..."
f"Healthcheck for {url} failed (Status {r.status_code})! Waiting 60s."
)
time.sleep(60)
continue
Expand All @@ -467,7 +467,7 @@ def _load(protocol, host, headers_json, project):
break
except RequestException as ex:
retries += 1
logger.warning(f"Specs not loaded: Could not connect to {url} ({ex})! Waiting 60s ...")
logger.warning(f"Could not connect to {url} ({ex})! Waiting 60s ...")
time.sleep(60)

if not spec_dict:
Expand Down

0 comments on commit 9bce163

Please sign in to comment.