diff --git a/notifier.rst b/notifier.rst index 066f126d72b..1ec59b14838 100644 --- a/notifier.rst +++ b/notifier.rst @@ -256,8 +256,8 @@ transport: # Slack errored main: '%env(SLACK_DSN)% || %env(TELEGRAM_DSN)%' - # Always send notifications to both Slack and Telegram - all: '%env(SLACK_DSN)% && %env(TELEGRAM_DSN)%' + # Send notifications to the next scheduled transport calculated by round robin + roundrobin: '%env(SLACK_DSN)% && %env(TELEGRAM_DSN)%' .. code-block:: xml @@ -279,7 +279,8 @@ transport: %env(SLACK_DSN)% || %env(TELEGRAM_DSN)% - + %env(SLACK_DSN)% && %env(TELEGRAM_DSN)% @@ -297,8 +298,8 @@ transport: // Slack errored 'main' => '%env(SLACK_DSN)% || %env(TELEGRAM_DSN)%', - // Always send notifications to both Slack and Telegram - 'all' => '%env(SLACK_DSN)% && %env(TELEGRAM_DSN)%', + // Send notifications to the next scheduled transport calculated by round robin + 'roundrobin' => '%env(SLACK_DSN)% && %env(TELEGRAM_DSN)%', ], ], ]);