Merge "Show correct version of data in convergence resource list"

This commit is contained in:
Jenkins 2017-08-29 04:44:24 +00:00 committed by Gerrit Code Review
commit cd3f84e2d1
1 changed files with 3 additions and 1 deletions

View File

@ -396,7 +396,9 @@ class Stack(collections.Mapping):
except KeyError:
return None
return resource.Resource(db_res.name, defn, self)
res = resource.Resource(db_res.name, defn, self)
res._load_data(db_res)
return res
def resource_get(self, name):
"""Return a stack resource, even if not in the current template."""