Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@ Fixed

contributed by @guzzijones12

* Link shutdown routine and sigterm handler to main thread #5555

Contributed by @khushboobhatia01

* Change compound index for ActionExecutionDB to improve query performance #5568

Contributed by @khushboobhatia01

Added
~~~~~

Expand Down
2 changes: 1 addition & 1 deletion st2common/st2common/models/db/execution.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class ActionExecutionDB(stormbase.StormFoundationDB):
{"fields": ["trigger_type.name"]},
{"fields": ["trigger_instance.id"]},
{"fields": ["context.user"]},
{"fields": ["-start_timestamp", "action.ref", "status"]},
{"fields": ["action.ref", "status", "-start_timestamp"]},
{"fields": ["workflow_execution"]},
{"fields": ["task_execution"]},
]
Expand Down