From c4aec22a33c58841c0b09bbc4445fd03520e1917 Mon Sep 17 00:00:00 2001 From: David Wilson Date: Wed, 31 Oct 2018 16:37:42 +0000 Subject: [PATCH] issue #369: fix one more _reset() reference. --- ansible_mitogen/connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible_mitogen/connection.py b/ansible_mitogen/connection.py index 97c56498..b566b541 100644 --- a/ansible_mitogen/connection.py +++ b/ansible_mitogen/connection.py @@ -802,7 +802,7 @@ class Connection(ansible.plugins.connection.ConnectionBase): gracefully shut down, and wait for shutdown to complete. Safe to call multiple times. """ - self._reset(mode='put') + self._mitogen_reset(mode='put') if self.broker: self.broker.shutdown() self.broker.join()