Skip to content

Commit

Permalink
Clarify result log for retried requests.
Browse files Browse the repository at this point in the history
The new log is analogous to the log for first-time requests, just with
"initial" replaced with "retried".
  • Loading branch information
kfindeisen committed Nov 19, 2024
1 parent 2459201 commit b72e1c6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,8 @@ async def knative_request(
timeout=None,
)
logging.info(
f"nextVisit {info} retried request {retry_result.content}"
f"nextVisit {info} status code {retry_result.status_code} for "
f"retried request {retry_result.content}"
)


Expand Down

0 comments on commit b72e1c6

Please sign in to comment.