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:
256256 # Slack errored
257257 main : ' %env(SLACK_DSN)% || %env(TELEGRAM_DSN)%'
258258
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)%'
261261
262262 .. code-block :: xml
263263
@@ -279,7 +279,8 @@ transport:
279279 %env(SLACK_DSN)% || %env(TELEGRAM_DSN)%
280280 </framework : chatter-transport >
281281
282- <!-- Always send notifications to both Slack and Telegram -->
282+ <!-- Send notifications to the next scheduled transport
283+ calculated by round robin -->
283284 <framework : chatter-transport name =" slack" >
284285 %env(SLACK_DSN)% && %env(TELEGRAM_DSN)%
285286 </framework : chatter-transport >
@@ -297,8 +298,8 @@ transport:
297298 // Slack errored
298299 'main' => '%env(SLACK_DSN)% || %env(TELEGRAM_DSN)%',
299300
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)%',
302303 ],
303304 ],
304305 ]);
You can’t perform that action at this time.
0 commit comments