mirror of
https://github.com/ansible/awx.git
synced 2026-03-19 18:07:33 -02:30
Update ActivityStream UI query to order by id (#15346)
Timestamp for activity stream is not indexed result in slow query. switching to ID (which effectively will is order by created time) to improve performance
This commit is contained in:
@@ -59,7 +59,7 @@ function ActivityStream() {
|
|||||||
{
|
{
|
||||||
page: 1,
|
page: 1,
|
||||||
page_size: 20,
|
page_size: 20,
|
||||||
order_by: '-timestamp',
|
order_by: '-id',
|
||||||
},
|
},
|
||||||
['id', 'page', 'page_size']
|
['id', 'page', 'page_size']
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user