mirror of
https://github.com/ansible/awx.git
synced 2026-05-12 20:07:37 -02:30
fix parse standard out issue
This commit is contained in:
@@ -195,7 +195,7 @@ export default ['$log', 'moment', function($log, moment){
|
|||||||
return _
|
return _
|
||||||
.zip(_.range(event.start_line + 1,
|
.zip(_.range(event.start_line + 1,
|
||||||
event.end_line + 1),
|
event.end_line + 1),
|
||||||
event.stdout.replace("\t", " ").split("\r\n").slice(0, -1));
|
event.stdout.replace("\t", " ").split("\r\n")).slice(0, -1);
|
||||||
},
|
},
|
||||||
// public function that provides the parsed stdout line, given a
|
// public function that provides the parsed stdout line, given a
|
||||||
// job_event
|
// job_event
|
||||||
|
|||||||
Reference in New Issue
Block a user