From 952329165152ea3b735b055f96e6e33e2984b239 Mon Sep 17 00:00:00 2001 From: 0xflotus <0xflotus@gmail.com> Date: Tue, 22 Nov 2022 08:14:12 +0100 Subject: [PATCH] chore: fix small typo error (#2921) --- doc/admin/config.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/admin/config.rst b/doc/admin/config.rst index c5e6f8409..c248bd124 100644 --- a/doc/admin/config.rst +++ b/doc/admin/config.rst @@ -399,9 +399,9 @@ The two ``transport_options`` entries can be omitted in most cases. If they are present they need to be a valid JSON dictionary. For possible entries in that dictionary see the `Celery documentation`_. -To use redis with sentinels set the broker or backend to ``sentinel://sentinel_host_1:26379;sentinal_host_2:26379/0`` +To use redis with sentinels set the broker or backend to ``sentinel://sentinel_host_1:26379;sentinel_host_2:26379/0`` and the respective transport_options to ``{"master_name":"mymaster"}``. -If your redis instances behind the sentinel have a password use ``sentinel://:my_password@sentinel_host_1:26379;sentinal_host_2:26379/0``. +If your redis instances behind the sentinel have a password use ``sentinel://:my_password@sentinel_host_1:26379;sentinel_host_2:26379/0``. If your redis sentinels themselves have a password set the transport_options to ``{"master_name":"mymaster","sentinel_kwargs":{"password":"my_password"}}``. Sentry