openstack_container.py: avoid logging secrets in request headers.

Signed-off-by: David-Sarah Hopwood <david-sarah@jacaranda.org>
This commit is contained in:
David-Sarah Hopwood 2013-02-21 01:58:56 +00:00 committed by Daira Hopwood
parent 70b8d5ac67
commit 96291392d3
1 changed files with 2 additions and 2 deletions

View File

@ -67,8 +67,8 @@ def _http_request(what, agent, method, url, request_headers, body=None, need_res
# We don't need to explicitly set Content-Length because FileBodyProducer knows the length
# (and if we do it won't work, because in that case Content-Length would be duplicated).
log.msg(format="OpenStack %(what)s request %(method)s %(url)s %(headers)s",
what=what, method=method, url=url, headers=repr(request_headers), level=log.OPERATIONAL)
log.msg(format="OpenStack %(what)s request %(method)s %(url)s %(header_keys)s",
what=what, method=method, url=url, header_keys=repr(request_headers.keys()), level=log.OPERATIONAL)
d = defer.maybeDeferred(agent.request, method, url, Headers(request_headers), bodyProducer)