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

Unified Diff: appengine/findit/crash/findit_for_clusterfuzz.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_clusterfuzz.py
diff --git a/appengine/findit/crash/findit_for_clusterfuzz.py b/appengine/findit/crash/findit_for_clusterfuzz.py
index eaed7ae08e5307a44434d4f17c4f0b711904761e..da2af6d80d52f6fd751f6405c655b44c4659b671 100644
--- a/appengine/findit/crash/findit_for_clusterfuzz.py
+++ b/appengine/findit/crash/findit_for_clusterfuzz.py
@@ -15,8 +15,8 @@ class FinditForClusterfuzz(Findit): # pragma: no cover
def _ClientID(cls):
return CrashClient.CLUSTERFUZZ
- def __init__(self, repository, pipeline_cls):
- super(FinditForClusterfuzz, self).__init__(repository, pipeline_cls)
+ def __init__(self, repository):
+ super(FinditForClusterfuzz, self).__init__(repository)
logging.info('Client %s is not supported by findit right now',
self.client_id)
raise NotImplementedError()

Powered by Google App Engine
This is Rietveld 408576698