diff --git a/awx/ui/client/features/output/render.service.js b/awx/ui/client/features/output/render.service.js index 5557a922bb..6111cbbe8d 100644 --- a/awx/ui/client/features/output/render.service.js +++ b/awx/ui/client/features/output/render.service.js @@ -3,6 +3,7 @@ import Entities from 'html-entities'; import { EVENT_START_PLAY, + EVENT_START_PLAYBOOK, EVENT_STATS_PLAY, EVENT_START_TASK, OUTPUT_ANSI_COLORMAP, @@ -208,6 +209,10 @@ function JobRenderService ($q, $sce, $window) { const lines = stdout.split('\r\n'); const record = this.createRecord(event, lines); + if (event.event === EVENT_START_PLAYBOOK) { + return { html: '', count: 0 }; + } + let html = ''; let count = lines.length; let ln = event.start_line;