Merge pull request #334 from behanceops/autoscale-fix
cast to int when doing math.
This commit is contained in:
commit
f6acd0f847
1 changed files with 1 additions and 1 deletions
|
|
@ -186,7 +186,7 @@ class FakeAutoScalingGroup(object):
|
|||
|
||||
if self.desired_capacity > curr_instance_count:
|
||||
# Need more instances
|
||||
count_needed = self.desired_capacity - curr_instance_count
|
||||
count_needed = int(self.desired_capacity) - int(curr_instance_count)
|
||||
reservation = self.autoscaling_backend.ec2_backend.add_instances(
|
||||
self.launch_config.image_id,
|
||||
count_needed,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue