From 79a093210e99cba05a4bf86f89f944c8f32d3aed Mon Sep 17 00:00:00 2001 From: ahmedabdou14 Date: Fri, 19 Jan 2024 13:40:13 +0300 Subject: [PATCH] Fix grammer in BlockingConnectionPool class documentation --- redis/asyncio/connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redis/asyncio/connection.py b/redis/asyncio/connection.py index 77aa21f034..07c4262233 100644 --- a/redis/asyncio/connection.py +++ b/redis/asyncio/connection.py @@ -1280,7 +1280,7 @@ class BlockingConnectionPool(ConnectionPool): connection from the pool when all of connections are in use, rather than raising a :py:class:`~redis.ConnectionError` (as the default :py:class:`~redis.asyncio.ConnectionPool` implementation does), it - makes blocks the current `Task` for a specified number of seconds until + blocks the current `Task` for a specified number of seconds until a connection becomes available. Use ``max_connections`` to increase / decrease the pool size::