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

Unified Diff: appengine/findit/waterfall/identify_try_job_culprit_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/identify_try_job_culprit_pipeline.py
diff --git a/appengine/findit/waterfall/identify_try_job_culprit_pipeline.py b/appengine/findit/waterfall/identify_try_job_culprit_pipeline.py
index ce93e3fac2fd10227ff9a2a2a532fbcfa8117dfb..efc2d071026aa6d21d5149dda073d6f3e66490cb 100644
--- a/appengine/findit/waterfall/identify_try_job_culprit_pipeline.py
+++ b/appengine/findit/waterfall/identify_try_job_culprit_pipeline.py
@@ -8,7 +8,7 @@ import logging
from google.appengine.ext import ndb
-from common.http_client_appengine import HttpClientAppengine as HttpClient
+from gae_libs.http.http_client_appengine import HttpClientAppengine
from common.pipeline_wrapper import BasePipeline
from common.waterfall import failure_type
from gae_libs.gitiles.cached_gitiles_repository import CachedGitilesRepository
@@ -24,7 +24,7 @@ from waterfall.send_notification_for_culprit_pipeline import (
GIT_REPO = CachedGitilesRepository(
- HttpClient(), 'https://chromium.googlesource.com/chromium/src.git')
+ HttpClientAppengine(), 'https://chromium.googlesource.com/chromium/src.git')
def _GetResultAnalysisStatus(analysis, result):

Powered by Google App Engine
This is Rietveld 408576698