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

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

Issue 2455053004: Moving ScheduleNewAnalysis to break the cycle (Closed)
Patch Set: Created 4 years, 2 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/crash/findit_for_chromecrash.py
diff --git a/appengine/findit/crash/findit_for_chromecrash.py b/appengine/findit/crash/findit_for_chromecrash.py
index 62c0a6bfddb37917683425aa9b0624b6209c9e43..472a24ae42fee6b037739c0736c1107e11ed7a6c 100644
--- a/appengine/findit/crash/findit_for_chromecrash.py
+++ b/appengine/findit/crash/findit_for_chromecrash.py
@@ -48,8 +48,8 @@ class FinditForChromeCrash(Findit):
# TODO(http://crbug.com/659354): remove the dependency on CrashConfig
# entirely, by passing the relevant data as arguments to this constructor.
- def __init__(self, repository, pipeline_cls):
- super(FinditForChromeCrash, self).__init__(repository, pipeline_cls)
+ def __init__(self, repository):
+ super(FinditForChromeCrash, self).__init__(repository)
component_classifier_config = CrashConfig.Get().component_classifier
self._stacktrace_parser = ChromeCrashParser()

Powered by Google App Engine
This is Rietveld 408576698