Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 """Findit for Waterfall configuration.""" | 5 """Findit for Waterfall configuration.""" |
| 6 | 6 |
| 7 from google.appengine.ext import ndb | 7 from google.appengine.ext import ndb |
| 8 | 8 |
| 9 from model.versioned_config import VersionedConfig | 9 from model.versioned_config import VersionedConfig |
| 10 | 10 |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 79 # 'use_chrome_build_extract': True | 79 # 'use_chrome_build_extract': True |
| 80 # } | 80 # } |
| 81 download_build_data_settings = ndb.JsonProperty(indexed=False, default={}) | 81 download_build_data_settings = ndb.JsonProperty(indexed=False, default={}) |
| 82 | 82 |
| 83 # A dict containing action settings for identified culprits or suspects. | 83 # A dict containing action settings for identified culprits or suspects. |
| 84 # { | 84 # { |
| 85 # 'cr_notification_build_threshold': 2, | 85 # 'cr_notification_build_threshold': 2, |
| 86 # 'cr_notification_latency_limit_minutes': 30, | 86 # 'cr_notification_latency_limit_minutes': 30, |
| 87 # } | 87 # } |
| 88 action_settings = ndb.JsonProperty(indexed=False, default={}) | 88 action_settings = ndb.JsonProperty(indexed=False, default={}) |
| 89 | |
| 90 # A dict containing settings for identifying the regression range that | |
| 91 # introduces test flakiness. | |
|
stgao
2016/08/24 16:13:43
nit: include a sample of setting like other above?
lijeffrey
2016/08/26 01:40:45
Done.
| |
| 92 check_flake_settings = ndb.JsonProperty(indexed=False, default={}) | |
| OLD | NEW |