We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ab4473 commit a3a7d1fCopy full SHA for a3a7d1f
ansible_runner/display_callback/callback/awx_display.py
@@ -708,6 +708,7 @@ def v2_runner_on_no_hosts(self, task):
708
# NOTE: Not used by Ansible 2.x.
709
event_data = dict(
710
task=task,
711
+ name=task.get_name(),
712
)
713
with self.capture_event_data('runner_on_no_hosts', **event_data):
714
super(CallbackModule, self).v2_runner_on_no_hosts(task)
@@ -804,7 +805,8 @@ def v2_runner_retry(self, result):
804
805
def v2_runner_on_start(self, host, task):
806
807
host=host.get_name(),
- task=task
808
+ task=task,
809
810
811
self._host_start[host.get_name()] = current_time()
812
with self.capture_event_data('runner_on_start', **event_data):
0 commit comments