mirror of
https://github.com/ansible/awx.git
synced 2026-01-14 11:20:39 -03:30
Order job_event requests by start_line
Ordering job_event requests by `start_line` accomplishes the same thing as ordering by `counter`. The `start_line` field is more performant because we have indexed it in the database.
This commit is contained in:
parent
4a455c7bf7
commit
7402ac29a8
@ -37,7 +37,7 @@ export const OUTPUT_ELEMENT_LAST = '#atStdoutMenuLast';
|
||||
export const OUTPUT_MAX_BUFFER_LENGTH = 1000;
|
||||
export const OUTPUT_MAX_LAG = 120;
|
||||
export const OUTPUT_NO_COUNT_JOB_TYPES = ['ad_hoc_command', 'system_job', 'inventory_update'];
|
||||
export const OUTPUT_ORDER_BY = 'counter';
|
||||
export const OUTPUT_ORDER_BY = 'start_line';
|
||||
export const OUTPUT_PAGE_CACHE = true;
|
||||
export const OUTPUT_PAGE_LIMIT = 5;
|
||||
export const OUTPUT_PAGE_SIZE = 50;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user