summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaweł Srokosz <psrok1@gmail.com>2022-06-23 18:27:04 +0200
committerGitHub <noreply@github.com>2022-06-23 19:27:04 +0300
commitd3a7a75c7b106e0864b3927c0904058e25c99958 (patch)
tree9aff13942719a085ac913517fced3b1c4e71b760
parent6da80865be650344964e9497a9edcb68ff102ee8 (diff)
downloadredis-py-d3a7a75c7b106e0864b3927c0904058e25c99958.tar.gz
Docs: Add a note about client_setname and client_name difference (#2247)
-rw-r--r--redis/commands/core.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/redis/commands/core.py b/redis/commands/core.py
index a337d4f..6d67415 100644
--- a/redis/commands/core.py
+++ b/redis/commands/core.py
@@ -687,6 +687,12 @@ class ManagementCommands(CommandsProtocol):
Sets the current connection name
For more information see https://redis.io/commands/client-setname
+
+ .. note::
+ This method sets client name only for **current** connection.
+
+ If you want to set a common name for all connections managed
+ by this client, use ``client_name`` constructor argument.
"""
return self.execute_command("CLIENT SETNAME", name, **kwargs)