Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions notifier.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -279,7 +279,8 @@ transport:
%env(SLACK_DSN)% || %env(TELEGRAM_DSN)%
</framework:chatter-transport>

<!-- Always send notifications to both Slack and Telegram -->
<!-- Send notifications to the next scheduled transport
calculated by round robin -->
<framework:chatter-transport name="slack">
%env(SLACK_DSN)% && %env(TELEGRAM_DSN)%
</framework:chatter-transport>
Expand All @@ -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)%',
],
],
]);
Expand Down