Commit 2df4e807 by jctanner

Merge pull request #5273 from jsdalton/fix_minor_wait_bug

Make sure initial_state is initialized
parents ae178b24 aa329b4b
......@@ -138,8 +138,7 @@ class ElbManager:
to report it out-of-service"""
for lb in self.lbs:
if wait:
initial_state = self._get_instance_health(lb)
initial_state = self._get_instance_health(lb) if wait else None
if initial_state and initial_state.state == 'InService':
lb.deregister_instances([self.instance_id])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment