Skip to content

Commit

Permalink
feat: allow infinite retry (python-arq#396)
Browse files Browse the repository at this point in the history
  • Loading branch information
vvmruder authored and rossmacarthur committed Sep 19, 2023
1 parent 62c7dd6 commit d2cef24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arq/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ def pool_factory(*args: Any, **kwargs: Any) -> ArqRedis:
except (ConnectionError, OSError, RedisError, asyncio.TimeoutError) as e:
if retry < settings.conn_retries:
logger.warning(
'redis connection error %s:%s %s %s, %d retries remaining...',
'redis connection error %s:%s %s %s, %s retries remaining...',
settings.host,
settings.port,
e.__class__.__name__,
Expand Down

0 comments on commit d2cef24

Please sign in to comment.