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

Unified Diff: appengine/findit/waterfall/pull_changelog_pipeline.py

Issue 2524633002: [Culprit-Finder] Refactor GitilesRepostory to make http_client required argument. (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/waterfall/pull_changelog_pipeline.py
diff --git a/appengine/findit/waterfall/pull_changelog_pipeline.py b/appengine/findit/waterfall/pull_changelog_pipeline.py
index 3519868e36dee2ad1fc201071f48dc77c0d1ea66..6fee9d78a915bef22231878865acc3b9a74f6bda 100644
--- a/appengine/findit/waterfall/pull_changelog_pipeline.py
+++ b/appengine/findit/waterfall/pull_changelog_pipeline.py
@@ -13,7 +13,7 @@ class PullChangelogPipeline(BasePipeline):
# TODO: for files in dependencies(blink, v8, skia, etc), use blame first.
GIT_REPO = GitilesRepository(
- 'https://chromium.googlesource.com/chromium/src.git', HttpClient())
+ HttpClient(), 'https://chromium.googlesource.com/chromium/src.git')
# Arguments number differs from overridden method - pylint: disable=W0221
def run(self, failure_info):

Powered by Google App Engine
This is Rietveld 408576698