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

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

Issue 2611723002: Moved http_client_appengine.py from ./common to ./gae_libs/http (Closed)
Patch Set: adding missing __init__.py file Created 3 years, 12 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/waterfall/pull_changelog_pipeline.py
diff --git a/appengine/findit/waterfall/pull_changelog_pipeline.py b/appengine/findit/waterfall/pull_changelog_pipeline.py
index 3067059156d6851e30ada96e5c8e1007125ecc9b..56f5248d54814a44d4de11e4dff635d30163c066 100644
--- a/appengine/findit/waterfall/pull_changelog_pipeline.py
+++ b/appengine/findit/waterfall/pull_changelog_pipeline.py
@@ -2,10 +2,10 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-from common.http_client_appengine import HttpClientAppengine as HttpClient
from common.pipeline_wrapper import BasePipeline
from common.pipeline_wrapper import pipeline
from gae_libs.gitiles.cached_gitiles_repository import CachedGitilesRepository
+from gae_libs.http.http_client_appengine import HttpClientAppengine
class PullChangelogPipeline(BasePipeline):
@@ -13,7 +13,8 @@ class PullChangelogPipeline(BasePipeline):
# TODO: for files in dependencies(blink, v8, skia, etc), use blame first.
GIT_REPO = CachedGitilesRepository(
- HttpClient(), 'https://chromium.googlesource.com/chromium/src.git')
+ HttpClientAppengine(),
+ '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