tests: make mitogen_shutdown_all be run_once by default.
This commit is contained in:
parent
f06152db97
commit
b59a47aecb
|
@ -12,6 +12,9 @@ from ansible.plugins.action import ActionBase
|
||||||
|
|
||||||
|
|
||||||
class ActionModule(ActionBase):
|
class ActionModule(ActionBase):
|
||||||
|
# Running this for every host is pointless.
|
||||||
|
BYPASS_HOST_LOOP = True
|
||||||
|
|
||||||
def run(self, tmp=None, task_vars=None):
|
def run(self, tmp=None, task_vars=None):
|
||||||
if not isinstance(self._connection,
|
if not isinstance(self._connection,
|
||||||
ansible_mitogen.connection.Connection):
|
ansible_mitogen.connection.Connection):
|
||||||
|
|
Loading…
Reference in New Issue