Skip to content

Commit

Permalink
Reduce retry once from warning to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
elupus authored Nov 13, 2024
1 parent e5fcd24 commit bc4b279
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion haphilipsjs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ async def wrapper(*args, **kwds):
try:
return await f(*args, **kwds)
except httpx.RemoteProtocolError as err:
LOG.warning("%r. We retry once, could be a reused session that was closed", err)
LOG.debug("%r. We retry once, could be a reused session that was closed", err)
return await f(*args, **kwds)

except (httpx.ConnectTimeout, httpx.ConnectError) as err:
Expand Down

0 comments on commit bc4b279

Please sign in to comment.