summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)