From 1ce0afe39ab26487c1cdfd9d4ba8c5bb445c8f32 Mon Sep 17 00:00:00 2001 From: Matus Valo Date: Thu, 8 Jul 2021 21:03:02 +0000 Subject: [PATCH] Update docstrings of redis transport with user and password --- kombu/transport/redis.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kombu/transport/redis.py b/kombu/transport/redis.py index d7e667a4..76150158 100644 --- a/kombu/transport/redis.py +++ b/kombu/transport/redis.py @@ -15,15 +15,15 @@ Connection string has the following format: .. code-block:: - redis://REDIS_ADDRESS[:PORT][/VIRTUALHOST] - rediss://REDIS_ADDRESS[:PORT][/VIRTUALHOST] + redis://[USER:PASSWORD@]REDIS_ADDRESS[:PORT][/VIRTUALHOST] + rediss://[USER:PASSWORD@]REDIS_ADDRESS[:PORT][/VIRTUALHOST] To use sentinel for dynamic Redis discovery, the connection string has following format: .. code-block:: - sentinel://SENTINEL_ADDRESS[:PORT] + sentinel://[USER:PASSWORD@]SENTINEL_ADDRESS[:PORT] Transport Options =================