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

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

Issue 1946513003: [Findit] Modify the handler for fracas input message. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Address comment. Created 4 years, 7 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
Index: appengine/findit/model/crash/crash_analysis.py
diff --git a/appengine/findit/model/crash/crash_analysis.py b/appengine/findit/model/crash/crash_analysis.py
index d98ae4975407b20a9371f405ab8e1ee5d17f16eb..236208d4354e8e691ba6a10ace4b78566a8e4121 100644
--- a/appengine/findit/model/crash/crash_analysis.py
+++ b/appengine/findit/model/crash/crash_analysis.py
@@ -8,7 +8,7 @@ from model import analysis_status
class CrashAnalysis(ndb.Model):
- """Base class to represent an analysis of a Chrome crash."""
+ """Base class to represent an analysis of a Chrome/Clusterfuzz crash."""
################### Properties for the crash itself. ###################
# In which version or revision of Chrome the crash occurred. Either a version
# number for Chrome build or a git commit hash/position for chromium build.
@@ -20,6 +20,12 @@ class CrashAnalysis(ndb.Model):
# The signature of the crash.
signature = ndb.StringProperty(indexed=False)
+ # The platform of this crash.
+ platform = ndb.StringProperty(indexed=False)
+
+ # ID to differentiate different client.
+ client_id = ndb.StringProperty(indexed=False)
+
################### Properties for the analysis progress. ###################
# The url path to the pipeline status page.

Powered by Google App Engine
This is Rietveld 408576698