mirror of
https://github.com/ansible/awx.git
synced 2026-05-08 18:07:36 -02:30
Make sure we reference the actual hostname
This commit is contained in:
@@ -477,7 +477,7 @@ class BaseCallbackModule(CallbackBase):
|
|||||||
|
|
||||||
def v2_runner_on_start(self, host, task):
|
def v2_runner_on_start(self, host, task):
|
||||||
event_data = dict(
|
event_data = dict(
|
||||||
host=host,
|
host=host.get_name(),
|
||||||
task=task
|
task=task
|
||||||
)
|
)
|
||||||
with self.capture_event_data('runner_on_start', **event_data):
|
with self.capture_event_data('runner_on_start', **event_data):
|
||||||
|
|||||||
Reference in New Issue
Block a user