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

Unified Diff: appengine/findit/waterfall/build_util.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/build_util.py
diff --git a/appengine/findit/waterfall/build_util.py b/appengine/findit/waterfall/build_util.py
index 01c68611e6f260534013cafee5f67f3b3a062675..5c45c2b6657b4894e6ef9f0272d3aef5006bf702 100644
--- a/appengine/findit/waterfall/build_util.py
+++ b/appengine/findit/waterfall/build_util.py
@@ -2,7 +2,7 @@
# 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 gae_libs.http.http_client_appengine import HttpClientAppengine
from libs import time_util
from model.wf_build import WfBuild
from waterfall import buildbot
@@ -10,8 +10,8 @@ from waterfall import lock_util
from waterfall import waterfall_config
-HTTP_CLIENT_LOGGING_ERRORS = HttpClient()
-HTTP_CLIENT_NO_404_ERROR = HttpClient(no_error_logging_statuses=[404])
+HTTP_CLIENT_LOGGING_ERRORS = HttpClientAppengine()
+HTTP_CLIENT_NO_404_ERROR = HttpClientAppengine(no_error_logging_statuses=[404])
CHROME_BUILD_EXTRACT = 'CBE'
BUILDBOT_MASTER = 'BM'
« no previous file with comments | « appengine/findit/waterfall/build_failure_analysis.py ('k') | appengine/findit/waterfall/detect_first_failure_pipeline.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698