File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -256,8 +256,8 @@ transport:
256
256
# Slack errored
257
257
main : ' %env(SLACK_DSN)% || %env(TELEGRAM_DSN)%'
258
258
259
- # Always send notifications to both Slack and Telegram
260
- all : ' %env(SLACK_DSN)% && %env(TELEGRAM_DSN)%'
259
+ # Send notifications to the next scheduled transport calculated by round robin
260
+ roundrobin : ' %env(SLACK_DSN)% && %env(TELEGRAM_DSN)%'
261
261
262
262
.. code-block :: xml
263
263
@@ -279,7 +279,8 @@ transport:
279
279
%env(SLACK_DSN)% || %env(TELEGRAM_DSN)%
280
280
</framework : chatter-transport >
281
281
282
- <!-- Always send notifications to both Slack and Telegram -->
282
+ <!-- Send notifications to the next scheduled transport
283
+ calculated by round robin -->
283
284
<framework : chatter-transport name =" slack" >
284
285
%env(SLACK_DSN)% && %env(TELEGRAM_DSN)%
285
286
</framework : chatter-transport >
@@ -297,8 +298,8 @@ transport:
297
298
// Slack errored
298
299
'main' => '%env(SLACK_DSN)% || %env(TELEGRAM_DSN)%',
299
300
300
- // Always send notifications to both Slack and Telegram
301
- 'all ' => '%env(SLACK_DSN)% && %env(TELEGRAM_DSN)%',
301
+ // Send notifications to the next scheduled transport calculated by round robin
302
+ 'roundrobin ' => '%env(SLACK_DSN)% && %env(TELEGRAM_DSN)%',
302
303
],
303
304
],
304
305
]);
You can’t perform that action at this time.
0 commit comments