summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2022-07-14 05:37:31 +0000
committerGerrit Code Review <review@openstack.org>2022-07-14 05:37:31 +0000
commita8fce1d09da9d241372b183206c5bb8b0411786c (patch)
tree49dab6add3b734dd986abfc387fbb0153eb28be5
parenta0e072b3204d736b9a4a5b2ceb2157f57405ac6f (diff)
parent65a68d97d0b0a4a78c2d21f6b76c6f207c993a19 (diff)
downloadheat-a8fce1d09da9d241372b183206c5bb8b0411786c.tar.gz
Merge "Followup to I7736373d03c23884158e4a1d41defafb4e2b8a4c"
-rw-r--r--heat/engine/resources/openstack/neutron/extrarouteset.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/heat/engine/resources/openstack/neutron/extrarouteset.py b/heat/engine/resources/openstack/neutron/extrarouteset.py
index 8b93ad8f9..c0378f2c2 100644
--- a/heat/engine/resources/openstack/neutron/extrarouteset.py
+++ b/heat/engine/resources/openstack/neutron/extrarouteset.py
@@ -112,7 +112,7 @@ class ExtraRouteSet(neutron.NeutronResource):
def add_dependencies(self, deps):
super(ExtraRouteSet, self).add_dependencies(deps)
- for resource in self.stack.items():
+ for resource in self.stack.values():
# depend on any RouterInterface in this template with the same
# router as this router
if resource.has_interface('OS::Neutron::RouterInterface'):