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

Unified Diff: appengine/findit/main.py

Issue 2042043004: Added skeleton code for the Detection of regression range for flaky (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: initial Created 4 years, 6 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/main.py
diff --git a/appengine/findit/main.py b/appengine/findit/main.py
index 25ac9eefbc5fff1fed545deac37c02fd319c833e..9792cc17e964448defeb0c5d490b5704bb64091d 100644
--- a/appengine/findit/main.py
+++ b/appengine/findit/main.py
@@ -25,7 +25,7 @@ from handlers import verify_analysis
from handlers import version
from handlers.crash import crash_config
from handlers.crash import fracas_crash
-
+from handlers.flake import check_flaky
stgao 2016/06/08 17:24:12 nit: check_flake?
caiw 2016/06/13 22:43:56 Acknowledged.
# Default module.
default_web_pages_handler_mappings = [
@@ -58,6 +58,7 @@ pipeline_backend_application = pipeline_handlers._APP
waterfall_frontend_web_pages_handler_mappings = [
('/build-failure', build_failure.BuildFailure),
('/list-analyses', list_analyses.ListAnalyses),
+ ('/waterfall/check-flaky', check_flaky.CheckFlaky),
lijeffrey 2016/06/08 18:05:57 nit: I think these are alphabetized, so put this o
caiw 2016/06/13 22:43:56 Acknowledged.
('/waterfall/build-failure', build_failure.BuildFailure),
('/waterfall/check-duplicate-failures',
check_duplicate_failures.CheckDuplicateFailures),

Powered by Google App Engine
This is Rietveld 408576698