From cd47a0ba793a1e6db7b7eef30117b62c2e955127 Mon Sep 17 00:00:00 2001 From: Dale Evans Date: Tue, 19 Jul 2022 14:00:01 -0700 Subject: [PATCH] fix docs docs were missing the conn parameter to redis_lock.reset_all() --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 01ae88f..9af0c68 100644 --- a/README.rst +++ b/README.rst @@ -189,7 +189,7 @@ Another solution is to use the ``reset_all()`` function when the application sta # On application start/restart import redis_lock - redis_lock.reset_all() + redis_lock.reset_all(conn) Alternatively, you can reset individual locks via the ``reset`` method.