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 @@ -268,8 +268,8 @@ transport:
268
268
# Slack errored
269
269
main : ' %env(SLACK_DSN)% || %env(TELEGRAM_DSN)%'
270
270
271
- # Always send notifications to both Slack and Telegram
272
- all : ' %env(SLACK_DSN)% && %env(TELEGRAM_DSN)%'
271
+ # Send notifications to the next scheduled transport calculated by round robin
272
+ roundrobin : ' %env(SLACK_DSN)% && %env(TELEGRAM_DSN)%'
273
273
274
274
.. code-block :: xml
275
275
@@ -291,7 +291,8 @@ transport:
291
291
%env(SLACK_DSN)% || %env(TELEGRAM_DSN)%
292
292
</framework : chatter-transport >
293
293
294
- <!-- Always send notifications to both Slack and Telegram -->
294
+ <!-- Send notifications to the next scheduled transport
295
+ calculated by round robin -->
295
296
<framework : chatter-transport name =" slack" >
296
297
%env(SLACK_DSN)% && %env(TELEGRAM_DSN)%
297
298
</framework : chatter-transport >
@@ -309,8 +310,8 @@ transport:
309
310
// Slack errored
310
311
'main' => '%env(SLACK_DSN)% || %env(TELEGRAM_DSN)%',
311
312
312
- // Always send notifications to both Slack and Telegram
313
- 'all ' => '%env(SLACK_DSN)% && %env(TELEGRAM_DSN)%',
313
+ // Send notifications to the next scheduled transport calculated by round robin
314
+ 'roundrobin ' => '%env(SLACK_DSN)% && %env(TELEGRAM_DSN)%',
314
315
],
315
316
],
316
317
]);
You can’t perform that action at this time.
0 commit comments