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

Unified Diff: appengine/findit/waterfall/detect_first_failure_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
« no previous file with comments | « appengine/findit/waterfall/build_util.py ('k') | appengine/findit/waterfall/extract_deps_info_pipeline.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/waterfall/detect_first_failure_pipeline.py
diff --git a/appengine/findit/waterfall/detect_first_failure_pipeline.py b/appengine/findit/waterfall/detect_first_failure_pipeline.py
index daa55ea34bb8a836feb59473e4e0c732da4926e8..b310ed9587b173e6cc355ffba5cb254efb15407a 100644
--- a/appengine/findit/waterfall/detect_first_failure_pipeline.py
+++ b/appengine/findit/waterfall/detect_first_failure_pipeline.py
@@ -6,10 +6,10 @@ import base64
import json
from common import constants
-from common.http_client_appengine import HttpClientAppengine as HttpClient
from common.pipeline_wrapper import BasePipeline
from common.pipeline_wrapper import pipeline
from common.waterfall import failure_type
+from gae_libs.http.http_client_appengine import HttpClientAppengine
from model.wf_analysis import WfAnalysis
from model.wf_step import WfStep
from waterfall import build_util
@@ -381,7 +381,7 @@ class DetectFirstFailurePipeline(BasePipeline):
def _CheckFirstKnownFailureForSwarmingTests(
self, master_name, builder_name, build_number, failed_steps, builds):
"""Uses swarming test results to update first failure info at test level."""
- http_client = HttpClient()
+ http_client = HttpClientAppengine()
# Identifies swarming tests and saves isolated data to them.
result = swarming_util.GetIsolatedDataForFailedBuild(
« no previous file with comments | « appengine/findit/waterfall/build_util.py ('k') | appengine/findit/waterfall/extract_deps_info_pipeline.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698