summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.openstack.org>2018-06-08 12:28:14 +0000
committerGerrit Code Review <review@openstack.org>2018-06-08 12:28:14 +0000
commitf095a0fd133a831ffeb04f9cb7f9d81a4f31a04a (patch)
treefb2e705517d05d63012e4ccb0763b02b89dfa503
parent83d102537e609ef0803649bb73c31e72d3c9aa40 (diff)
parent0b46b2089c8ec26a2e662538f513d76cb05ca47a (diff)
downloadpython-heatclient-f095a0fd133a831ffeb04f9cb7f9d81a4f31a04a.tar.gz
Merge "Mark stacks returned by get loaded"1.16.0
-rw-r--r--heatclient/v1/stacks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/heatclient/v1/stacks.py b/heatclient/v1/stacks.py
index 1a76286..2484ff4 100644
--- a/heatclient/v1/stacks.py
+++ b/heatclient/v1/stacks.py
@@ -279,7 +279,7 @@ class StackManager(StackChildManager):
kwargs['params'] = {"resolve_outputs": False}
resp = self.client.get('/stacks/%s' % stack_id, **kwargs)
body = utils.get_response_body(resp)
- return Stack(self, body.get('stack'))
+ return Stack(self, body.get('stack'), loaded=True)
def template(self, stack_id):
"""Get template content for a specific stack as a parsed JSON object.