1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Set play context on stdout callback plugin (#35910)

The loop on self._callback_plugins does not include the stdout callback,
so the stdout_callback never has set_play_context called.
This commit is contained in:
Monty Taylor 2018-11-29 22:15:56 -06:00 committed by ansibot
parent ad7798c26a
commit 824c72da5f

View file

@ -241,6 +241,10 @@ class TaskQueueManager:
)
play_context = PlayContext(new_play, self._options, self.passwords, self._connection_lockfile.fileno())
if (self._stdout_callback and
hasattr(self._stdout_callback, 'set_play_context')):
self._stdout_callback.set_play_context(play_context)
for callback_plugin in self._callback_plugins:
if hasattr(callback_plugin, 'set_play_context'):
callback_plugin.set_play_context(play_context)