diff --git a/VERSION b/VERSION index 1864002..b976b13 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.6.9 \ No newline at end of file +0.6.10 \ No newline at end of file diff --git a/cli.json b/cli.json index 4d32ac0..b94e253 100755 --- a/cli.json +++ b/cli.json @@ -5,7 +5,7 @@ "commands": [ { "name": "eaa", - "version": "0.6.9", + "version": "0.6.10", "description": "Akamai CLI for Enterprise Application Access (EAA)" } ] diff --git a/libeaa/common.py b/libeaa/common.py index 35a583d..07f8267 100644 --- a/libeaa/common.py +++ b/libeaa/common.py @@ -17,7 +17,7 @@ """ #: cli-eaa version [PEP 8] -__version__ = '0.6.9' +__version__ = '0.6.10' import sys from threading import Event @@ -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()})