diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d0fed6..a984d1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ -## 1.0.2 (, 2016) +## 1.0.2 (December 02, 2016) - Added cool down and bid threshold times in the configuration file - Refresh state doesn't affect tiopatinhas' actions anymore -## 1.0.1 (November 29, 2016) +## 1.0.1 (November 30, 2016) - Added support to get user data from Launch Configuration Group if not provided ## 1.0.0 (October 11, 2016) diff --git a/setup.py b/setup.py index 5d417c1..c83a21e 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='tiopatinhas', - version='1.0.1', + version='1.0.2', author='Chaordic Systems', description='An Amazon Autoscaling companion that uses the Spot Market', license='Open Source', diff --git a/tp/tp.py b/tp/tp.py index 7c24bfb..a67a2a7 100644 --- a/tp/tp.py +++ b/tp/tp.py @@ -162,8 +162,8 @@ def guess_target(self): self.logger.debug(">> guess_target(): changed target from %s to %s", previous, candidate) self.target = candidate else: - self.logger.info("guess_target(): not updating target for instances, waiting for cool down! \ - Remaining time to next change %s", self.cool_down_threshold - elapsed_time) + self.logger.info("guess_target(): not updating target for instances, waiting for cool down!" + "Remaining time to next change %s", self.cool_down_threshold - elapsed_time) def managed_by_autoscale(self): return int(self.tapping_group.desired_capacity)