Chromium Code Reviews| Index: appengine/findit/model/crash/crash_config.py |
| diff --git a/appengine/findit/model/crash/crash_config.py b/appengine/findit/model/crash/crash_config.py |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..898ead408c85446a76bb4205a3a54aeaa9329e5f |
| --- /dev/null |
| +++ b/appengine/findit/model/crash/crash_config.py |
| @@ -0,0 +1,22 @@ |
| +# Copyright 2016 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +"""Findit for crash (ClusterFuzz & Fracas/Chromecrash) configuration.""" |
| + |
| +from google.appengine.ext import ndb |
| + |
| +from model.versioned_config import VersionedConfig |
| + |
| + |
| +class CrashConfig(VersionedConfig): |
| + """Global configuration of settings for processing Chrome crashes.""" |
| + # Fracas-specific parameters. |
| + # { |
| + # "crash_data_push_token": "secrete_token", |
|
Martin Barbella
2016/04/11 21:46:32
s/secrete/secret/
stgao
2016/04/12 18:19:17
Done.
|
| + # "analysis_result_pubsub_topic": "projects/project-name/topics/name", |
| + # "supported_platform_list_by_channel": { |
| + # "canary": ["win", "mac"], |
| + # }, |
| + # } |
| + fracas = ndb.JsonProperty(indexed=False, default={}) |