diff --git a/redis/commands/core.py b/redis/commands/core.py index a337d4f314..6d67415aab 100644 --- a/redis/commands/core.py +++ b/redis/commands/core.py @@ -687,6 +687,12 @@ def client_setname(self, name: str, **kwargs) -> ResponseT: 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)