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

Side by Side Diff: appengine/findit/model/crash/crash_config.py

Issue 1852383002: [Findit] Integrate with Fracas through Pub/Sub. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Just rebase. Created 4 years, 8 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 unified diff | Download patch
OLDNEW
(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": "secret_token",
17 # "analysis_result_pubsub_topic": "projects/project-name/topics/name",
18 # "supported_platform_list_by_channel": {
19 # "canary": ["win", "mac"],
20 # },
21 # }
22 fracas = ndb.JsonProperty(indexed=False, default={})
OLDNEW
« no previous file with comments | « appengine/findit/model/crash/crash_analysis.py ('k') | appengine/findit/model/crash/fracas_crash_analysis.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698