2019-Jun Ansible devel branch and random hangs using winrm?
I am posting over at the An sible Project Google Group. Upgraded ansible to $ ansible --version ansible 2.9.0.dev0 config file = /Users/tanner/projects/ansible.git/playbooks.git/celadonsystems.com/ansible.cfg configured module search path = [u'/Users/tanner/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules'] ansible python module location = /Users/tanner/projects/ansible.git/ansible/lib/ansible executable location = /Users/tanner/projects/ansible.git/ansible/bin/ansible python version = 2.7.10 (default, Feb 22 2019, 21:55:15) [GCC 4.2.1 Compatible Apple LLVM 10.0.1 (clang-1001.0.37.14)] And now random playbooks and tasks just hang in unusual places. Before the upgrade of ansible this task worked as expected. - name: Install programs (choco) win_chocolatey: name: "{{ item }}" state: "present" when: - chocolatey_packages is defined loop: "{{ chocolatey_packages|flatten(levels=1) }}" The abov...