Skip to content

Commit

Permalink
[#133] remove extra logging
Browse files Browse the repository at this point in the history
  • Loading branch information
ablatov committed Oct 3, 2018
1 parent 573db86 commit 1a8fb62
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions legion_test/legion_test/robot/dex_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,8 @@ def init_session_id_from_data(data: dict):
"""

global _session_cookies, _jenkins_credentials
print('Cookies:{}'.format(_session_cookies))
print('Jenkins_creds:{}'.format(_jenkins_credentials))
print('Cookies in data: {}'.format(data['cookies']))
if not _session_cookies and not _jenkins_credentials:
cookies = data['cookies'].split(';')
print('Cookies inside: {}'.format(cookies))
for cookie in cookies:
if len(cookie.split('=')) > 2:
_session_cookies[cookie.split('=')[0]] = '{}='.format(cookie.split('=')[1])
Expand Down

0 comments on commit 1a8fb62

Please sign in to comment.