diff --git a/VERSION b/VERSION index b976b13..8f1a869 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.6.10 \ No newline at end of file +0.6.11 \ No newline at end of file diff --git a/cli.json b/cli.json index b94e253..9069f51 100755 --- a/cli.json +++ b/cli.json @@ -5,7 +5,7 @@ "commands": [ { "name": "eaa", - "version": "0.6.10", + "version": "0.6.11", "description": "Akamai CLI for Enterprise Application Access (EAA)" } ] diff --git a/libeaa/common.py b/libeaa/common.py index 07f8267..c9d3240 100644 --- a/libeaa/common.py +++ b/libeaa/common.py @@ -17,7 +17,7 @@ """ #: cli-eaa version [PEP 8] -__version__ = '0.6.10' +__version__ = '0.6.11' import sys from threading import Event diff --git a/libeaa/eventlog.py b/libeaa/eventlog.py index 3d5f378..1980b01 100644 --- a/libeaa/eventlog.py +++ b/libeaa/eventlog.py @@ -397,6 +397,11 @@ def fetch_logs(self, exit_fn, stop_event): logger.debug("Now waiting %s seconds..." % (EventLogAPI.PULL_INTERVAL_SEC - elapsed)) stop_event.wait(EventLogAPI.PULL_INTERVAL_SEC - elapsed) fetch_log_count = 0 + # TMESUP-147 when tail and start are set, we need to unset start + # to kick in the normal tail + if config.tail and config.start: + logger.info("✴️✴️✴️ Engaging tail mode") + config.start = None if stop_event.is_set(): break except Exception: