Skip to content

Commit 3de6d87

Browse files
authored
Update connections.py (#396)
Allows values like `float('inf')` to retry infinite. This can be useful in cluster contexts where a redis service might temporarily not available for some reason but you might not want the worker to crash on that but waiting until redis is available again
1 parent d4a37f3 commit 3de6d87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arq/connections.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ def pool_factory(*args: Any, **kwargs: Any) -> ArqRedis:
280280
except (ConnectionError, OSError, RedisError, asyncio.TimeoutError) as e:
281281
if retry < settings.conn_retries:
282282
logger.warning(
283-
'redis connection error %s:%s %s %s, %d retries remaining...',
283+
'redis connection error %s:%s %s %s, %s retries remaining...',
284284
settings.host,
285285
settings.port,
286286
e.__class__.__name__,

0 commit comments

Comments
 (0)