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

Unified Diff: appengine/findit/waterfall/extract_signal_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/extract_signal_pipeline.py
diff --git a/appengine/findit/waterfall/extract_signal_pipeline.py b/appengine/findit/waterfall/extract_signal_pipeline.py
index 2d6f900a62b45922c4dd620b802cbb2a88da8590..84c86ba691f8d22617cd1f0804cedb81cd665c36 100644
--- a/appengine/findit/waterfall/extract_signal_pipeline.py
+++ b/appengine/findit/waterfall/extract_signal_pipeline.py
@@ -9,7 +9,7 @@ import logging
from google.appengine.api.urlfetch import ResponseTooLargeError
-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.pipeline_wrapper import pipeline
from model.wf_analysis import WfAnalysis
@@ -84,7 +84,7 @@ def _GetReliableTestFailureLog(gtest_result):
class ExtractSignalPipeline(BasePipeline):
"""A pipeline to extract failure signals from each failed step."""
- HTTP_CLIENT = HttpClient()
+ HTTP_CLIENT = HttpClientAppengine()
# Limit stored log data to 1000 KB, because a datastore entity has a size
# limit of 1 MB. And Leave 24 KB for other possible usage later.
« no previous file with comments | « appengine/findit/waterfall/extract_deps_info_pipeline.py ('k') | appengine/findit/waterfall/flake/step_mapper.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698