Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 """Findit for crash (ClusterFuzz & Fracas/Chromecrash) configuration.""" | |
| 6 | |
| 7 from google.appengine.ext import ndb | |
| 8 | |
| 9 from model.versioned_config import VersionedConfig | |
| 10 | |
| 11 | |
| 12 class CrashConfig(VersionedConfig): | |
| 13 """Global configuration of settings for processing Chrome crashes.""" | |
| 14 # Fracas-specific parameters. | |
| 15 # { | |
| 16 # "crash_data_push_token": "secrete_token", | |
| 17 # "analysis_result_pubsub_topic": "projects/project-name/topics/name", | |
| 18 # "supported_channels": { | |
|
mimee
2016/04/07 23:43:09
This looks more like supported_platform_list_by_ch
stgao
2016/04/08 01:14:08
Done.
| |
| 19 # "canary": ["win", "mac"], | |
| 20 # }, | |
| 21 # } | |
| 22 fracas = ndb.JsonProperty(indexed=False, default={}) | |
|
mimee
2016/04/07 23:43:09
newline EOF
stgao
2016/04/08 01:14:08
hm, that seems not the convention in infra repo.
| |
| OLD | NEW |