From cfb94ca040985ae9936b6607decd7b8052174965 Mon Sep 17 00:00:00 2001 From: Gustavo Mendonca Date: Fri, 2 Dec 2016 16:47:46 -0200 Subject: [PATCH] v1.0.2 --- CHANGELOG.md | 4 ++-- setup.py | 2 +- tp/tp.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) 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)