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

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

Issue 2043973002: [Findit] Fracas crash triage dashboard (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 4 years, 6 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/fracas_crash_analysis.py
diff --git a/appengine/findit/model/crash/fracas_crash_analysis.py b/appengine/findit/model/crash/fracas_crash_analysis.py
index fee1e843c593be1a9177f6664db8cc27e971d259..d1214a3fb5e6c8e4a21d79576d2a66a80a41aa5a 100644
--- a/appengine/findit/model/crash/fracas_crash_analysis.py
+++ b/appengine/findit/model/crash/fracas_crash_analysis.py
@@ -13,12 +13,12 @@ from model.crash.crash_analysis import CrashAnalysis
class FracasCrashAnalysis(CrashAnalysis):
"""Represents an analysis of a Chrome crash."""
# Customized properties for Fracas crash.
- historic_metadata = ndb.JsonProperty(indexed=False)
+ historical_metadata = ndb.JsonProperty(indexed=False)
stgao 2016/06/13 21:25:51 Note: this change won't be backward-compatible.
Sharu Jiang 2016/06/21 00:28:14 Right, however I deleted some old data, so it shou
channel = ndb.StringProperty(indexed=False)
def Reset(self):
super(FracasCrashAnalysis, self).Reset()
- self.historic_metadata = None
+ self.historical_metadata = None
self.channel = None
@staticmethod

Powered by Google App Engine
This is Rietveld 408576698