From d6dd21d3ac28660bbfa7825bba0b586328769709 Mon Sep 17 00:00:00 2001 From: Clemens Stolle Date: Thu, 9 May 2024 06:38:49 +0200 Subject: [PATCH] fix(connection): use async Retry (#2555) [python] --- python/bullmq/redis_connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/bullmq/redis_connection.py b/python/bullmq/redis_connection.py index 2088d884f..cc92f993b 100644 --- a/python/bullmq/redis_connection.py +++ b/python/bullmq/redis_connection.py @@ -1,6 +1,6 @@ import redis.asyncio as redis from redis.backoff import ExponentialBackoff -from redis.retry import Retry +from redis.asyncio.retry import Retry from redis.exceptions import ( BusyLoadingError, ConnectionError,