mirror of https://github.com/ansible/ansible.git
wait_for_connection: fix errant warning for local connection(s) (#84421)
This prevents "[WARNING]: Reset is not implemented for this connection" when using wait_for_connection with localhost or other local hosts. It's arguable (from a consistency/correctness perspective) that `ansible.plugins.connection.local.Connection.reset()` should call `Connection.close()`. I went for a no-op on the basis of "if it aint broke don't fix it", and erred on the side of keeping existing semantics. However either option would be fine with me.pull/82263/head
parent
5208cffd91
commit
e2b454f4e3
@ -0,0 +1,2 @@
|
|||||||
|
bugfixes:
|
||||||
|
- wait_for_connection - a warning was displayed if any hosts used a local connection (https://github.com/ansible/ansible/issues/84419)
|
||||||
Loading…
Reference in New Issue