Make process_header private

This should never have been added in a public way. I feel we are ok
making this private as there is no public use i can foresee.

Change-Id: Ib95365a11fa21146d51bea103c7709943aafdae8
This commit is contained in:
Jamie Lennox 2015-04-14 15:06:56 +10:00
parent af6f1924eb
commit 93c34309b3
1 changed files with 4 additions and 4 deletions

View File

@ -148,8 +148,8 @@ class Session(object):
if user_agent is not None:
self.user_agent = user_agent
@classmethod
def process_header(cls, header):
@staticmethod
def _process_header(header):
"""Redacts the secure headers to be logged."""
secure_headers = ('authorization', 'x-auth-token',
'x-subject-token',)
@ -186,7 +186,7 @@ class Session(object):
if headers:
for header in six.iteritems(headers):
string_parts.append('-H "%s: %s"'
% Session.process_header(header))
% self._process_header(header))
if json:
data = jsonutils.dumps(json)
if data:
@ -217,7 +217,7 @@ class Session(object):
string_parts.append('[%s]' % status_code)
if headers:
for header in six.iteritems(headers):
string_parts.append('%s: %s' % Session.process_header(header))
string_parts.append('%s: %s' % self._process_header(header))
if text:
string_parts.append('\nRESP BODY: %s\n' % text)