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

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

Issue 2455053004: Moving ScheduleNewAnalysis to break the cycle (Closed)
Patch Set: rebase Created 4 years, 1 month 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 9c0acacc9a91887d640bca1318e4ae1161fcf3fa..58efaa519a0a7a7405bd6684b624402cd488f176 100644
--- a/appengine/findit/crash/findit_for_chromecrash.py
+++ b/appengine/findit/crash/findit_for_chromecrash.py
@@ -49,8 +49,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