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

Unified Diff: appengine/findit/crash/crash_pipeline.py

Issue 2663063007: [Predator] Switch from anonymous dict to CrashData. (Closed)
Patch Set: Rebase and fix delta test. Created 3 years, 10 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 | « no previous file | appengine/findit/crash/crash_report.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/crash/crash_pipeline.py
diff --git a/appengine/findit/crash/crash_pipeline.py b/appengine/findit/crash/crash_pipeline.py
index 6bc16eaf057e480639b351f3b1e1d56fada82ab8..ee68fba78e572b2f86bffc514ec669772cc0a6e8 100644
--- a/appengine/findit/crash/crash_pipeline.py
+++ b/appengine/findit/crash/crash_pipeline.py
@@ -141,7 +141,7 @@ class CrashAnalysisPipeline(CrashBasePipeline):
analysis.put()
# Actually do the analysis.
- culprit = self._findit.FindCulprit(analysis)
+ culprit = self._findit.FindCulprit(analysis.ToCrashReport())
if culprit is not None:
result, tags = culprit.ToDicts()
else:
« no previous file with comments | « no previous file | appengine/findit/crash/crash_report.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698