mirror of
https://github.com/ansible/awx.git
synced 2026-02-27 07:56:06 -03:30
Fix bug
This commit is contained in:
@@ -1160,7 +1160,7 @@ class BaseTask(object):
|
|||||||
|
|
||||||
if event_data.get('event') in MINIMAL_EVENTS:
|
if event_data.get('event') in MINIMAL_EVENTS:
|
||||||
should_emit = True # always send some types like playbook_on_stats
|
should_emit = True # always send some types like playbook_on_stats
|
||||||
if event_data.get('stdout') == '' and event_data['start_line'] == event_data['end_line']:
|
elif event_data.get('stdout') == '' and event_data['start_line'] == event_data['end_line']:
|
||||||
should_emit = False # exclude events with no output
|
should_emit = False # exclude events with no output
|
||||||
else:
|
else:
|
||||||
should_emit = any(
|
should_emit = any(
|
||||||
|
|||||||
Reference in New Issue
Block a user