From aac668ee1f71a17fece95ecb2eb64e88741cb74f Mon Sep 17 00:00:00 2001 From: Jonny McCullagh Date: Mon, 13 Aug 2018 15:48:21 +0100 Subject: [PATCH] Update wait_for.py (#44071) Removed the 'wait 300 seconds' from the examples that did not have the 300 sec timeout +label: docsite_pr --- lib/ansible/modules/utilities/logic/wait_for.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ansible/modules/utilities/logic/wait_for.py b/lib/ansible/modules/utilities/logic/wait_for.py index b61db0f078..276e927ac0 100644 --- a/lib/ansible/modules/utilities/logic/wait_for.py +++ b/lib/ansible/modules/utilities/logic/wait_for.py @@ -106,19 +106,19 @@ EXAMPLES = r''' wait_for: timeout=300 delegate_to: localhost -- name: Wait 300 seconds for port 8000 to become open on the host, don't start checking for 10 seconds +- name: Wait for port 8000 to become open on the host, don't start checking for 10 seconds wait_for: port: 8000 delay: 10 -- name: Wait 300 seconds for port 8000 of any IP to close active connections, don't start checking for 10 seconds +- name: Waits for port 8000 of any IP to close active connections, don't start checking for 10 seconds wait_for: host: 0.0.0.0 port: 8000 delay: 10 state: drained -- name: Wait 300 seconds for port 8000 of any IP to close active connections, ignoring connections for specified hosts +- name: Wait for port 8000 of any IP to close active connections, ignoring connections for specified hosts wait_for: host: 0.0.0.0 port: 8000