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

Unified Diff: appengine/findit/handlers/config.py

Issue 2438673004: [Findit] Post analysis results of flakes to bug filed by chromium-try-flakes. (Closed)
Patch Set: Add a config flag to enable/disable updating monorail bug. Created 4 years, 1 month 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
« no previous file with comments | « appengine/findit/common/appengine_util.py ('k') | appengine/findit/handlers/flake/check_flake.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/handlers/config.py
diff --git a/appengine/findit/handlers/config.py b/appengine/findit/handlers/config.py
index 99913c2b5908393fee8519df613ad4cadef46224..b5782e70c482827bf3a46879229147ca879c62c3 100644
--- a/appengine/findit/handlers/config.py
+++ b/appengine/findit/handlers/config.py
@@ -191,7 +191,8 @@ def _ValidateCheckFlakeSettings(settings):
isinstance(settings.get('max_flake_in_a_row'), int) and
isinstance(settings.get('max_stable_in_a_row'), int) and
isinstance(settings.get('iterations_to_rerun'), int) and
- isinstance(settings.get('max_build_numbers_to_look_back'), int))
+ isinstance(settings.get('max_build_numbers_to_look_back'), int) and
+ isinstance(settings.get('update_monorail_bug'), bool))
# Maps config properties to their validation functions.
« no previous file with comments | « appengine/findit/common/appengine_util.py ('k') | appengine/findit/handlers/flake/check_flake.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698