mirror of https://github.com/ansible/ansible.git
* [stable-2.10] Don't treat host_pinned as lockstep (#73484) * Don't treat host_pinned as lockstep. Fixes #73364 * Add intg tests. (cherry picked from commitpull/73776/headd3f3784b86) Co-authored-by: Matt Martz <matt@sivel.net> * Make non-lockstep callback tests more deterministic (#73511) (cherry picked from commit125c220343)
parent
0a6004d9ca
commit
d720a5e42c
@ -0,0 +1,3 @@
|
||||
bugfixes:
|
||||
- default callback - Ensure that the ``host_pinned`` strategy is not treated as lockstep
|
||||
(https://github.com/ansible/ansible/issues/73364)
|
||||
@ -0,0 +1,35 @@
|
||||
|
||||
PLAY [nonlockstep] *************************************************************
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost10]
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost10]
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost10]
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost11]
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost11]
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost11]
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost12]
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost12]
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost12]
|
||||
|
||||
PLAY RECAP *********************************************************************
|
||||
testhost10 : ok=3 changed=3 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0
|
||||
testhost11 : ok=3 changed=3 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0
|
||||
testhost12 : ok=3 changed=3 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0
|
||||
|
||||
@ -0,0 +1,35 @@
|
||||
|
||||
PLAY [nonlockstep] *************************************************************
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost10]
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost10]
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost10]
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost11]
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost11]
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost11]
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost12]
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost12]
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost12]
|
||||
|
||||
PLAY RECAP *********************************************************************
|
||||
testhost10 : ok=3 changed=3 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0
|
||||
testhost11 : ok=3 changed=3 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0
|
||||
testhost12 : ok=3 changed=3 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0
|
||||
|
||||
@ -0,0 +1,7 @@
|
||||
---
|
||||
- hosts: nonlockstep
|
||||
gather_facts: false
|
||||
tasks:
|
||||
- command: sleep {{ i }}
|
||||
- command: sleep {{ i }}
|
||||
- command: sleep {{ i }}
|
||||
Loading…
Reference in New Issue