Skip to content

Commit

Permalink
Merge pull request #48 from akamai/EME-851
Browse files Browse the repository at this point in the history
0.6.10
  • Loading branch information
bitonio authored Jun 24, 2024
2 parents 91c209f + 50f508f commit bda6a9d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.9
0.6.10
2 changes: 1 addition & 1 deletion cli.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"commands": [
{
"name": "eaa",
"version": "0.6.9",
"version": "0.6.10",
"description": "Akamai CLI for Enterprise Application Access (EAA)"
}
]
Expand Down
6 changes: 1 addition & 5 deletions libeaa/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"""

#: cli-eaa version [PEP 8]
__version__ = '0.6.9'
__version__ = '0.6.10'

import sys
from threading import Event
Expand Down Expand Up @@ -224,10 +224,6 @@ def __init__(self, config=None, api=API_Version.Legacy):
self._baseurl = f'https://%s/crux/v3/' % edgerc.get(section, 'host')
self._session = requests.Session()
self._session.auth = EdgeGridAuth.from_edgerc(edgerc, section)
# Handle extra querystring to send to all REST requests
scanned_extra_qs = edgerc.get(section, 'extra_qs', fallback=None)
if scanned_extra_qs:
self.extra_qs.update(parse_qs(scanned_extra_qs))

if self._session:
self._session.headers.update({'User-Agent': self.user_agent()})
Expand Down

0 comments on commit bda6a9d

Please sign in to comment.