summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Doran <sdoran@redhat.com>2021-05-03 17:46:17 -0400
committerMatt Clay <matt@mystile.com>2021-05-07 14:26:04 -0700
commit3f0b92e0b607aee8fa75295b1a05b4cde47a3519 (patch)
tree39e27bded38a7cdabcd234794f9f2a439305c717
parent4da2e2db79e67bccf3a6bed4b7a4626353b60ac5 (diff)
downloadansible-3f0b92e0b607aee8fa75295b1a05b4cde47a3519.tar.gz
[stable-2.11] callback_default test - Reduce sleep time to correct CI failures
For unknown reasons, these tests started failing recently because the results from testhost11 are being returned before testhost10, but only when coverage is enabled. Setting the initial host sleep time to 0 fixes this failure. ci_coverage (cherry picked from commit 728e43bc59) Co-authored-by: Sam Doran <sdoran@redhat.com>
-rw-r--r--test/integration/targets/callback_default/inventory2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/targets/callback_default/inventory b/test/integration/targets/callback_default/inventory
index 6d9b302898..5d93afd0e9 100644
--- a/test/integration/targets/callback_default/inventory
+++ b/test/integration/targets/callback_default/inventory
@@ -5,6 +5,6 @@ testhost ansible_connection=local ansible_python_interpreter="{{ ansible_playboo
testhost5 ansible_host=169.254.199.200 # no connection is ever established with this host
[nonlockstep]
-testhost10 i=0.5 ansible_connection=local ansible_python_interpreter="{{ ansible_playbook_python }}"
+testhost10 i=0 ansible_connection=local ansible_python_interpreter="{{ ansible_playbook_python }}"
testhost11 i=3.0 ansible_connection=local ansible_python_interpreter="{{ ansible_playbook_python }}"
testhost12 i=12.0 ansible_connection=local ansible_python_interpreter="{{ ansible_playbook_python }}"