Skip to content

Commit

Permalink
Comment out logging statement causing Jenkins test issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Smith committed Dec 11, 2016
1 parent 940b72f commit 732a652
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acitoolkit/acisession.py
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ def _prep_x509_header(self, method, url, data=None):
payload = '{}{}'.format(method, url)
if data:
payload += data
logging.debug('Payload: ', payload)
#logging.debug('Payload: ', payload)

signature = base64.b64encode(sign(self._x509Key, payload, 'sha256'))
cookie = {'APIC-Request-Signature': signature,
Expand Down

0 comments on commit 732a652

Please sign in to comment.