Raise logging message for stacks found in *_FAILED state

Change-Id: I73c76359ad875f03b3616d6da0784d1146b7ab34
This commit is contained in:
Federico Ressi 2021-09-16 09:18:52 +02:00
parent 094d3c0826
commit 1ee3350f90
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ class HeatStackFixture(tobiko.SharedFixture):
return self.validate_created_stack()
if stack_status.endswith('_FAILED'):
LOG.debug(f"Stack '{self.stack_name}' (id='{stack.id}') "
LOG.error(f"Stack '{self.stack_name}' (id='{stack.id}') "
f"found in '{stack_status}' status (reason="
f"'{stack.stack_status_reason}'). Deleting it...")
self.delete_stack(stack_id=stack.id)