Make sure we reference the actual hostname

This commit is contained in:
Matthew Jones 2018-11-02 10:37:58 -04:00
parent 673068464a
commit 80ac44565a
No known key found for this signature in database
GPG Key ID: EED42EEB8B369E1E

View File

@ -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):