Skip to content

Commit 1a59471

Browse files
committed
Adding small change in code to trigger pipeline for the branch.
1 parent 83cf781 commit 1a59471

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ By default, redis-py uses a connection pool to manage connections. Each instance
101101

102102
``` python
103103
>>> pool = redis.ConnectionPool(host='localhost', port=6379, db=0)
104-
>>> r = redis.Redis(connection_pool=pool)
104+
>>> r = redis.Redis(connection_pool=pool)
105105
```
106106

107107
Alternatively, you might want to look at [Async connections](https://redis.readthedocs.io/en/stable/examples/asyncio_examples.html), or [Cluster connections](https://redis.readthedocs.io/en/stable/connections.html#cluster-client), or even [Async Cluster connections](https://redis.readthedocs.io/en/stable/connections.html#async-cluster-client).

redis/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ def int_or_str(value):
4545
return value
4646

4747

48+
# This version is used when building the package for publishing
4849
__version__ = "6.2.0"
4950
VERSION = tuple(map(int_or_str, __version__.split(".")))
5051

0 commit comments

Comments
 (0)