Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(327)

Unified Diff: appengine/findit/handlers/flake/flake_dashboard.py

Issue 2243673002: [Findit] Added algorithm to analysis (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: gclient sync Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: appengine/findit/handlers/flake/flake_dashboard.py
diff --git a/appengine/findit/handlers/flake/flake_dashboard.py b/appengine/findit/handlers/flake/flake_dashboard.py
index b77b5b4bd3b99217980530e6565af109be5de4dd..5341fccf4532dfa9529643f18a6930ce0a2983d8 100644
--- a/appengine/findit/handlers/flake/flake_dashboard.py
+++ b/appengine/findit/handlers/flake/flake_dashboard.py
@@ -11,7 +11,8 @@ class FlakeDashboard(BaseHandler):
PERMISSION_LEVEL = Permission.CORP_USER
def HandleGet(self):
- master_flake_analyses = MasterFlakeAnalysis.query().fetch()
+ master_flake_analyses = MasterFlakeAnalysis.query().order(
+ -MasterFlakeAnalysis.updated_time).fetch()
data = {
'master_flake_analyses': master_flake_analyses
}
« no previous file with comments | « appengine/findit/handlers/flake/check_flake.py ('k') | appengine/findit/handlers/flake/test/check_flake_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698