From e5a72cb93adb9e942ba1557412a9f8b4522add86 Mon Sep 17 00:00:00 2001 From: Phil Bruckner Date: Wed, 15 Jul 2020 13:35:54 -0500 Subject: [PATCH] Change default automation mode (#14009) --- source/_docs/automation.markdown | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/source/_docs/automation.markdown b/source/_docs/automation.markdown index e337e081200..ac924f90798 100644 --- a/source/_docs/automation.markdown +++ b/source/_docs/automation.markdown @@ -61,10 +61,14 @@ The automation's `mode` configuration option controls what happens when the auto Mode | Description -|- -`single` | Do not start a new run. Issue a warning. +`single` | (Default) Do not start a new run. Issue a warning. `restart` | Start a new run after first stopping previous run. `queued` | Start a new run after all previous runs complete. Runs are guaranteed to execute in the order they were queued. -`parallel` | (Default) Start a new, independent run in parallel with previous runs. +`parallel` | Start a new, independent run in parallel with previous runs. + +

+ +

For both `queued` and `parallel` modes, configuration option `max` controls the maximum number of runs that can be executing and/or queued up at a time. The default is 10.