Cleanup heat stacks 1 time per tenant

Heat stacks are tenant-based, it means that when manager is
returning list of stack for the whole tenant(not for user).
So when rally is cleaning up stacks it needs to delete it
only 1 time per tenant. Otherwise, it is very likely to get
"stack not found" errors in log.

Change-Id: Id8b0f967e2a1b35c8de1abdeee40fc060ce2a0d2
Closes-bug: #1450997
This commit is contained in:
kairat_kushaev 2015-05-05 11:58:02 +03:00
parent d074688506
commit 4e4a1c6eef
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ class QuotaMixin(SynchronizedDeletion):
# HEAT
@base.resource("heat", "stacks", order=100)
@base.resource("heat", "stacks", order=100, tenant_resource=True)
class HeatStack(base.ResourceManager):
pass