From 1a7d474268fe7072686369adc20aa498d63f063e Mon Sep 17 00:00:00 2001 From: Ahmed Ashraf <104530599+ahmedabdou14@users.noreply.github.com> Date: Tue, 23 Jan 2024 14:35:54 +0300 Subject: [PATCH] Fix grammer in BlockingConnectionPool class documentation (#3120) Co-authored-by: ahmedabdou14 --- 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::