| 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'
|
|
|
|
|