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

Unified Diff: appengine/findit/common/http_client_appengine.py

Issue 1154593005: [Findit] Add a sub-pipeline to analyze failures caused by DEPS rolls. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Improve readability. Created 5 years, 7 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/common/dependency.py ('k') | appengine/findit/common/test/chromium_deps_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/common/http_client_appengine.py
diff --git a/appengine/findit/common/http_client_appengine.py b/appengine/findit/common/http_client_appengine.py
index 0581f44ddc51719b669d42d6975e234623987af8..e3a56bee8c9e4b69a69c9648271c4989648f4248 100644
--- a/appengine/findit/common/http_client_appengine.py
+++ b/appengine/findit/common/http_client_appengine.py
@@ -17,7 +17,6 @@ class HttpClientAppengine(RetryHttpClient): # pragma: no cover
result = urlfetch.fetch(url, deadline=timeout, validate_certificate=True)
if result.status_code != 200:
- logging.error('Request to %s failed with code=%d: %s',
- url, result.status_code, result.content)
+ logging.error('Request to %s resulted in %d', url, result.status_code)
return result.status_code, result.content
« no previous file with comments | « appengine/findit/common/dependency.py ('k') | appengine/findit/common/test/chromium_deps_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698