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

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: [Findit] fixed previous comments 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..e8934f86491c2e09676ef9f52df45e10cab93d30 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_flake
# Default module.
default_web_pages_handler_mappings = [
@@ -61,6 +61,7 @@ waterfall_frontend_web_pages_handler_mappings = [
('/waterfall/build-failure', build_failure.BuildFailure),
('/waterfall/check-duplicate-failures',
check_duplicate_failures.CheckDuplicateFailures),
+ ('/waterfall/check-flake', check_flake.CheckFlake),
('/waterfall/config', config.Configuration),
('/waterfall/failure-log', failure_log.FailureLog),
('/waterfall/help-triage', help_triage.HelpTriage),

Powered by Google App Engine
This is Rietveld 408576698