You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my project I process event_data and form a custom report on tasks that has been executed, their status, etc..
I wonder how and if at all possible would be to add TaskResult._task.check_mode or any other TaskResult's or task's properties to event_data in awx_display?
For example,
result = ansible_runner.run(....)
for e in result.events:
if e['event_data']['task_check_mode']:
print(e)
In my project I process event_data and form a custom report on tasks that has been executed, their status, etc..
I wonder how and if at all possible would be to add
TaskResult._task.check_mode
or any other TaskResult's or task's properties to event_data in awx_display?For example,
Task properties data is injected here:
ansible-runner/ansible_runner/display_callback/callback/awx_display.py
Lines 408 to 414 in d467662
I would like it to be:
Would you consider accepting such a PR?
The text was updated successfully, but these errors were encountered: