From 638e6092c692ef9d25d34f25a98d91b8459bc589 Mon Sep 17 00:00:00 2001 From: Dubh Ad Date: Sat, 14 Nov 2020 20:36:58 +0000 Subject: [PATCH] Update scripts.markdown (#15639) The wording here has caused confusion a few times, so making it clearer that the you have to use `false` --- source/_docs/scripts.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_docs/scripts.markdown b/source/_docs/scripts.markdown index 3c9b06c52dc..bdf5cc2f291 100644 --- a/source/_docs/scripts.markdown +++ b/source/_docs/scripts.markdown @@ -178,7 +178,7 @@ With both types of waits it is possible to set a timeout after which the script ``` {% endraw %} -You can also get the script to abort after the timeout by using optional `continue_on_timeout`. +You can also get the script to abort after the timeout by using optional `continue_on_timeout: false`. {% raw %} ```yaml @@ -194,7 +194,7 @@ You can also get the script to abort after the timeout by using optional `contin ``` {% endraw %} -Without `continue_on_timeout` the script will always continue. +Without `continue_on_timeout: false` the script will always continue since the default for `continue_on_timeout` is `true`. ### Wait Variable