diff options
author | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2016-02-26 16:37:13 +0100 |
---|---|---|
committer | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2016-02-26 16:37:19 +0100 |
commit | 6a85555b1af2491dcd4c221b04033e27e7c39d21 (patch) | |
tree | 4aafc5f8dff20b2eaef4b7f964deeba729de6370 /sonar-db | |
parent | 23827bba027ce552866c8df33bd7ae6603499fbe (diff) | |
download | sonarqube-6a85555b1af2491dcd4c221b04033e27e7c39d21.tar.gz sonarqube-6a85555b1af2491dcd4c221b04033e27e7c39d21.zip |
SONAR-7187 WS api/ce/activity order tasks from last submitted to older all the time
Diffstat (limited to 'sonar-db')
-rw-r--r-- | sonar-db/src/main/resources/org/sonar/db/ce/CeQueueMapper.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-db/src/main/resources/org/sonar/db/ce/CeQueueMapper.xml b/sonar-db/src/main/resources/org/sonar/db/ce/CeQueueMapper.xml index b00fadad36a..b8c4f5bf6ee 100644 --- a/sonar-db/src/main/resources/org/sonar/db/ce/CeQueueMapper.xml +++ b/sonar-db/src/main/resources/org/sonar/db/ce/CeQueueMapper.xml @@ -19,7 +19,7 @@ </sql> <sql id="orderByDescDateAndId"> - order by cq.created_at desc, cq.id asc + order by cq.created_at desc, cq.id desc </sql> <select id="selectByUuid" parameterType="String" resultType="org.sonar.db.ce.CeQueueDto"> |