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

Unified Diff: infra_libs/ts_mon/common/monitors.py

Issue 2127373005: Fix RetriableHttp (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Fix RetriableHttp Created 4 years, 5 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 | « infra_libs/test/httplib2_utils_test.py ('k') | infra_libs/ts_mon/common/test/monitors_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: infra_libs/ts_mon/common/monitors.py
diff --git a/infra_libs/ts_mon/common/monitors.py b/infra_libs/ts_mon/common/monitors.py
index bed8f180c138d9129eccd6b609eaf40ae2426f39..e39cdfe63503584c8622f1c96bc837f7d77fdfc3 100644
--- a/infra_libs/ts_mon/common/monitors.py
+++ b/infra_libs/ts_mon/common/monitors.py
@@ -104,7 +104,7 @@ class HttpsMonitor(Monitor):
resp, content = self._http.request(self._endpoint, method='POST',
body=body)
if resp.status != 200:
- logging.warning('HttpsMonitor.send received status %d: %s', resp,
+ logging.warning('HttpsMonitor.send received status %d: %s', resp.status,
content)
except (ValueError, errors.Error,
socket.timeout, socket.error, socket.herror, socket.gaierror,
« no previous file with comments | « infra_libs/test/httplib2_utils_test.py ('k') | infra_libs/ts_mon/common/test/monitors_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698