diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-10 22:41:43 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-10 22:41:43 +0200 |
commit | 4644b5af7d9c212aa1a6dd4dec647fc5c936ea47 (patch) | |
tree | 2efa02bc2857add46404d8348bcadf6a83ca594c /bin | |
parent | 04ccb2bf88390c671b5426e2043b6f2c4f47e20a (diff) | |
download | jenkins.debian.net-4644b5af7d9c212aa1a6dd4dec647fc5c936ea47.tar.xz |
reproducible: reverse order of live_status packages
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_live_status.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_live_status.py b/bin/reproducible_html_live_status.py index e6761e57..7fd09585 100755 --- a/bin/reproducible_html_live_status.py +++ b/bin/reproducible_html_live_status.py @@ -19,7 +19,7 @@ def generate_live_status(): 'r.status, r.version, r.build_duration AS duration, p.builder, p.notify ' + \ 'FROM sources AS s JOIN schedule AS p ON p.package_id=s.id LEFT JOIN results AS r ON s.id=r.package_id ' + \ 'WHERE p.date_build_started != "" OR p.notify != "" ' + \ - 'ORDER BY p.date_build_started, date_scheduled DESC' + 'ORDER BY p.date_build_started DESC' html = '' rows = query_db(query) html += '<p>If there are more than 21 rows shown here, the list includes stale builds... we\'re working on it. Stay tuned.<table class="scheduled">\n' + tab |