Merge "Fix typo in wait_for_heat_status causing it to fail permanently"

This commit is contained in:
Zuul 2020-04-23 04:06:00 +00:00 committed by Gerrit Code Review
commit e8eeb686be
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ def wait_for_heat_status(stack_name=None,
while time.time() < end_time:
current_status = get_stack_status(stack=stack_name, auth_info=auth_info,
con_ssh=con_ssh)[0]
con_ssh=con_ssh)
if status == current_status:
return True, 'Heat stack {} has reached {} status'.format(
stack_name, status)