diff options
author | Jake Barnwell <2320567+jakebarnwell@users.noreply.github.com> | 2022-02-22 07:07:22 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-22 14:07:22 +0200 |
commit | e5ac39ac7b2728d14bfc27aac989b1085b7f6199 (patch) | |
tree | dc4e64f23a73f5b85d00bacc1e6f194d2af04c9b /redis/utils.py | |
parent | 1983905d5adceaba2c3b27ba8f569dcb5387cc35 (diff) | |
download | redis-py-e5ac39ac7b2728d14bfc27aac989b1085b7f6199.tar.gz |
Add cluster support for scripting (#1937)
* Add cluster support for scripting
* Fall back to connection_pool.get_encoder if necessary
* Add documentation for cluster-based scripting
* Add test for flush response
Co-authored-by: dvora-h <dvora.heller@redis.com>
Diffstat (limited to 'redis/utils.py')
-rw-r--r-- | redis/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/utils.py b/redis/utils.py index 56fec49..9ab75f2 100644 --- a/redis/utils.py +++ b/redis/utils.py @@ -67,7 +67,7 @@ def merge_result(command, res): Merge all items in `res` into a list. This command is used when sending a command to multiple nodes - and they result from each node should be merged into a single list. + and the result from each node should be merged into a single list. res : 'dict' """ |