timeout if cycling a server takes longer than inservice_time_allowed
This commit is contained in:
@@ -48,7 +48,11 @@ module AWS
|
||||
end
|
||||
|
||||
def ec2_instances
|
||||
[]
|
||||
@ec2_instances ||= [AWS::FakeEC2::Instance.new, AWS::FakeEC2::Instance.new]
|
||||
end
|
||||
|
||||
def load_balancers
|
||||
@load_balancers ||= AWS::FakeELB::LoadBalancerCollection.new
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -6,6 +6,9 @@ module AWS
|
||||
class Instance
|
||||
def initialize
|
||||
end
|
||||
|
||||
def terminate(decrement_desired_capacity)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -12,6 +12,11 @@ module AWS
|
||||
end
|
||||
end
|
||||
|
||||
class LoadBalancerCollection < Array
|
||||
def initialize
|
||||
end
|
||||
end
|
||||
|
||||
class InstanceCollection < Array
|
||||
def initialize
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user