Fix attribute error (stack.name -> stack.stack_name)

Change-Id: I93f1e527dd31ae09fdcee5e146e1f000a55c516e
This commit is contained in:
Federico Ressi 2021-08-23 09:31:11 +02:00
parent 13afe23060
commit 2eb6969800
1 changed files with 1 additions and 1 deletions

View File

@ -592,7 +592,7 @@ def check_stack_status(stack: stacks.Stack,
CREATE_IN_PROGRESS in expected_status or
CREATE_COMPLETE in expected_status):
raise HeatStackCreationFailed(
name=stack.name,
name=stack.stack_name,
observed=stack_status,
expected=expected_status,
status_reason=stack.stack_status_reason)