mirror of
https://github.com/ansible/awx.git
synced 2026-05-07 17:37:37 -02:30
Merge pull request #11670 from keithjgrant/11628-missing-job-output
Display all job type events in job output
This commit is contained in:
@@ -240,7 +240,7 @@ function JobOutput({ job, eventRelatedSearchableKeys, eventSearchableKeys }) {
|
|||||||
setWsEvents([]);
|
setWsEvents([]);
|
||||||
scrollToRow(lastScrollPosition);
|
scrollToRow(lastScrollPosition);
|
||||||
});
|
});
|
||||||
}, 250);
|
}, 500);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
let batchTimeout;
|
let batchTimeout;
|
||||||
@@ -278,7 +278,7 @@ function JobOutput({ job, eventRelatedSearchableKeys, eventSearchableKeys }) {
|
|||||||
batchedEvents = [];
|
batchedEvents = [];
|
||||||
};
|
};
|
||||||
|
|
||||||
if (data.group_name === 'job_events') {
|
if (data.group_name === `${job.type}_events`) {
|
||||||
batchedEvents.push(data);
|
batchedEvents.push(data);
|
||||||
clearTimeout(batchTimeout);
|
clearTimeout(batchTimeout);
|
||||||
if (batchedEvents.length >= 25) {
|
if (batchedEvents.length >= 25) {
|
||||||
|
|||||||
Reference in New Issue
Block a user