Add debug logs to determine when a heat stack is deleted/created

Change-Id: Ie1592a9d45764adb64c269bb9f1eed83101f1f2e
This commit is contained in:
Eduardo Olivares 2021-02-18 18:32:15 +01:00
parent 121608a59d
commit c9c6e12535
1 changed files with 5 additions and 0 deletions

View File

@ -247,6 +247,7 @@ class HeatStackFixture(tobiko.SharedFixture):
self.stack = stack = self.client.stacks.get(
self.stack_name, resolve_outputs=resolve_outputs)
except exc.HTTPNotFound:
LOG.debug('Stack %s not found' % self.stack_name)
self.stack = stack = None
finally:
self._outputs = self._resources = None
@ -285,6 +286,10 @@ class HeatStackFixture(tobiko.SharedFixture):
time.sleep(self.wait_interval)
stack = self.get_stack()
if stack:
LOG.debug('%s reached one of the expected stack status: %s' %
(self.stack_name, stack.stack_status))
if check:
if stack is None:
if DELETE_COMPLETE not in expected_status: