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

Unified Diff: appengine/findit/model/crash/crash_config.py

Issue 2356673002: [Findit] Add cracas config in config page. (Closed)
Patch Set: Rebase. Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « appengine/findit/handlers/crash/crash_config.py ('k') | appengine/findit/templates/crash/crash_config.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
index e30dd68c95a0d061e67dde044f4e9deb2654f695..344a705b50b5cfefce94e506cc8ad4ea61cbc5f1 100644
--- a/appengine/findit/model/crash/crash_config.py
+++ b/appengine/findit/model/crash/crash_config.py
@@ -19,17 +19,34 @@ class CrashConfig(VersionedConfig):
super(CrashConfig, self).__init__(*args, **kargs)
self.cached_component_classifier = None
- # Fracas-specific parameters.
+ # An example of fracas-specific parameters:
# {
# "analysis_result_pubsub_topic": "projects/project-name/topics/name",
# "supported_platform_list_by_channel": {
# "canary": ["win", "mac"],
# },
+ # "platform_rename": {
+ # "linux": "unix"
+ # },
+ # "signature_blacklist_markers": [],
# }
fracas = ndb.JsonProperty(indexed=False, default={})
+ # An example of cracas-specific parameters:
+ # {
+ # "analysis_result_pubsub_topic": "projects/project-name/topics/name",
+ # "supported_platform_list_by_channel": {
+ # "canary": ["win", "mac"],
+ # },
+ # "platform_rename": {
+ # "linux": "unix"
+ # },
+ # "signature_blacklist_markers": [],
+ # }
+ cracas = ndb.JsonProperty(indexed=False, default={})
+
################## Settings shared by Fracas/Clusterfuzz. ##################
- # Project classifier settings:
+ # An example of project classifier settings:
# {
# "host_directories": [
# "src/chrome/browser/resources/",
@@ -71,7 +88,7 @@ class CrashConfig(VersionedConfig):
# }
project_classifier = ndb.JsonProperty(indexed=False, default={})
- # Component classifier settings:
+ # An example of component classifier settings:
# {
# # Number of frames on top to consider when deciding the crashed
# #component.
« no previous file with comments | « appengine/findit/handlers/crash/crash_config.py ('k') | appengine/findit/templates/crash/crash_config.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698