From 80ac44565a323abd91a2644e39204c314e6bf34a Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Fri, 2 Nov 2018 10:37:58 -0400 Subject: [PATCH] Make sure we reference the actual hostname --- awx/lib/awx_display_callback/module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/lib/awx_display_callback/module.py b/awx/lib/awx_display_callback/module.py index c50f20f92c..b2c350c3e4 100644 --- a/awx/lib/awx_display_callback/module.py +++ b/awx/lib/awx_display_callback/module.py @@ -477,7 +477,7 @@ class BaseCallbackModule(CallbackBase): def v2_runner_on_start(self, host, task): event_data = dict( - host=host, + host=host.get_name(), task=task ) with self.capture_event_data('runner_on_start', **event_data):