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

Issue 2322133002: [Findit] Add cracas_crash_analysis (Closed)

Created:
4 years, 3 months ago by Sharu Jiang
Modified:
4 years, 3 months ago
CC:
chromium-reviews, infra-reviews+infra_chromium.org, jjlee_google.com, chanli, lijeffrey
Target Ref:
refs/heads/master
Project:
infra
Visibility:
Public.

Description

[Findit] Add cracas_crash_analysis Add CracasCrashAnalysis, the model is identical as FracasCrashAnalysis, so just make a copy to help findit seperate analysis from Fracas and Cracas in database. BUG=645203 Committed: https://chromium.googlesource.com/infra/infra/+/aaedba6f2626f2493ba5b7a2814bf16ba6806799

Patch Set 1 #

Patch Set 2 : . #

Total comments: 2

Patch Set 3 : Overwrite _CreateKey method. #

Total comments: 2

Patch Set 4 : Use ChromeCrashAnalysis as base model shared by FracasCrashAnalysis and CracasCrashAnalysis #

Total comments: 12

Patch Set 5 : Address comments. #

Patch Set 6 : Rebase. #

Total comments: 2

Patch Set 7 : Move _CreateKey, Create and Get to CrashAnalysis. #

Patch Set 8 : Rebase. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+71 lines, -57 lines) Patch
M appengine/findit/crash/findit_for_client.py View 1 2 3 4 5 6 7 2 chunks +2 lines, -2 lines 0 comments Download
A appengine/findit/model/crash/chrome_crash_analysis.py View 1 2 3 4 5 6 1 chunk +19 lines, -0 lines 0 comments Download
A appengine/findit/model/crash/cracas_crash_analysis.py View 1 2 3 4 5 6 1 chunk +12 lines, -0 lines 0 comments Download
M appengine/findit/model/crash/crash_analysis.py View 1 2 3 4 5 6 2 chunks +15 lines, -0 lines 0 comments Download
M appengine/findit/model/crash/fracas_crash_analysis.py View 1 2 3 4 5 6 1 chunk +4 lines, -28 lines 0 comments Download
A + appengine/findit/model/crash/test/chrome_crash_analysis_test.py View 1 2 3 4 5 6 7 2 chunks +6 lines, -6 lines 0 comments Download
A + appengine/findit/model/crash/test/cracas_crash_analysis_test.py View 1 2 3 2 chunks +4 lines, -11 lines 0 comments Download
M appengine/findit/model/crash/test/crash_analysis_test.py View 1 2 3 4 5 6 2 chunks +9 lines, -3 lines 0 comments Download
M appengine/findit/model/crash/test/fracas_crash_analysis_test.py View 1 2 3 1 chunk +0 lines, -7 lines 0 comments Download

Messages

Total messages: 24 (11 generated)
Sharu Jiang
PTAL :)
4 years, 3 months ago (2016-09-08 21:11:44 UTC) #3
Martin Barbella
https://codereview.chromium.org/2322133002/diff/20001/appengine/findit/model/crash/cracas_crash_analysis.py File appengine/findit/model/crash/cracas_crash_analysis.py (right): https://codereview.chromium.org/2322133002/diff/20001/appengine/findit/model/crash/cracas_crash_analysis.py#newcode13 appengine/findit/model/crash/cracas_crash_analysis.py:13: class CracasCrashAnalysis(FracasCrashAnalysis): This doesn't seem clean to me, and ...
4 years, 3 months ago (2016-09-08 21:15:39 UTC) #5
Sharu Jiang
https://codereview.chromium.org/2322133002/diff/20001/appengine/findit/model/crash/cracas_crash_analysis.py File appengine/findit/model/crash/cracas_crash_analysis.py (right): https://codereview.chromium.org/2322133002/diff/20001/appengine/findit/model/crash/cracas_crash_analysis.py#newcode13 appengine/findit/model/crash/cracas_crash_analysis.py:13: class CracasCrashAnalysis(FracasCrashAnalysis): On 2016/09/08 21:15:39, Martin Barbella wrote: > ...
4 years, 3 months ago (2016-09-08 22:18:52 UTC) #6
wrengr (wrong one)
https://codereview.chromium.org/2322133002/diff/40001/appengine/findit/model/crash/cracas_crash_analysis.py File appengine/findit/model/crash/cracas_crash_analysis.py (right): https://codereview.chromium.org/2322133002/diff/40001/appengine/findit/model/crash/cracas_crash_analysis.py#newcode14 appengine/findit/model/crash/cracas_crash_analysis.py:14: class CracasCrashAnalysis(FracasCrashAnalysis): Like mbarbella says, this doesn't look clean. ...
4 years, 3 months ago (2016-09-09 17:58:24 UTC) #8
Sharu Jiang
https://codereview.chromium.org/2322133002/diff/40001/appengine/findit/model/crash/cracas_crash_analysis.py File appengine/findit/model/crash/cracas_crash_analysis.py (right): https://codereview.chromium.org/2322133002/diff/40001/appengine/findit/model/crash/cracas_crash_analysis.py#newcode14 appengine/findit/model/crash/cracas_crash_analysis.py:14: class CracasCrashAnalysis(FracasCrashAnalysis): On 2016/09/09 17:58:24, wrengr (wrong one) wrote: ...
4 years, 3 months ago (2016-09-09 23:19:43 UTC) #12
wrengr (wrong one)
https://codereview.chromium.org/2322133002/diff/120001/appengine/findit/model/crash/chrome_crash_analysis.py File appengine/findit/model/crash/chrome_crash_analysis.py (right): https://codereview.chromium.org/2322133002/diff/120001/appengine/findit/model/crash/chrome_crash_analysis.py#newcode14 appengine/findit/model/crash/chrome_crash_analysis.py:14: """Represents an analysis of a Chrome crash (Cracas and ...
4 years, 3 months ago (2016-09-10 00:22:06 UTC) #13
stgao
https://codereview.chromium.org/2322133002/diff/120001/appengine/findit/model/crash/fracas_crash_analysis.py File appengine/findit/model/crash/fracas_crash_analysis.py (right): https://codereview.chromium.org/2322133002/diff/120001/appengine/findit/model/crash/fracas_crash_analysis.py#newcode14 appengine/findit/model/crash/fracas_crash_analysis.py:14: """Represents an analysis of a Chrome crash.""" a Chrome ...
4 years, 3 months ago (2016-09-13 17:04:47 UTC) #14
Sharu Jiang
https://codereview.chromium.org/2322133002/diff/120001/appengine/findit/model/crash/chrome_crash_analysis.py File appengine/findit/model/crash/chrome_crash_analysis.py (right): https://codereview.chromium.org/2322133002/diff/120001/appengine/findit/model/crash/chrome_crash_analysis.py#newcode14 appengine/findit/model/crash/chrome_crash_analysis.py:14: """Represents an analysis of a Chrome crash (Cracas and ...
4 years, 3 months ago (2016-09-14 20:46:36 UTC) #15
Martin Barbella
LGTM once comment is addressed. https://codereview.chromium.org/2322133002/diff/160001/appengine/findit/model/crash/cracas_crash_analysis.py File appengine/findit/model/crash/cracas_crash_analysis.py (right): https://codereview.chromium.org/2322133002/diff/160001/appengine/findit/model/crash/cracas_crash_analysis.py#newcode18 appengine/findit/model/crash/cracas_crash_analysis.py:18: return ndb.Key('CracasCrashAnalysis', hashlib.sha1( We're ...
4 years, 3 months ago (2016-09-19 20:24:36 UTC) #16
Sharu Jiang
https://codereview.chromium.org/2322133002/diff/160001/appengine/findit/model/crash/cracas_crash_analysis.py File appengine/findit/model/crash/cracas_crash_analysis.py (right): https://codereview.chromium.org/2322133002/diff/160001/appengine/findit/model/crash/cracas_crash_analysis.py#newcode18 appengine/findit/model/crash/cracas_crash_analysis.py:18: return ndb.Key('CracasCrashAnalysis', hashlib.sha1( On 2016/09/19 20:24:36, Martin Barbella wrote: ...
4 years, 3 months ago (2016-09-19 22:19:06 UTC) #17
stgao
lgtm
4 years, 3 months ago (2016-09-20 23:06:03 UTC) #18
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2322133002/220001
4 years, 3 months ago (2016-09-21 19:25:52 UTC) #22
commit-bot: I haz the power
4 years, 3 months ago (2016-09-21 20:06:10 UTC) #24
Message was sent while issue was closed.
Committed patchset #8 (id:220001) as
https://chromium.googlesource.com/infra/infra/+/aaedba6f2626f2493ba5b7a2814bf...

Powered by Google App Engine
This is Rietveld 408576698