Merge "Don't load resource data for list_outputs"

This commit is contained in:
Jenkins 2017-09-27 15:42:10 +00:00 committed by Gerrit Code Review
commit 876c046332
1 changed files with 1 additions and 2 deletions

View File

@ -1363,8 +1363,7 @@ class EngineService(service.ServiceBase):
s = self._get_stack(cntx, stack_identity)
stack = parser.Stack.load(cntx, stack=s)
stack._update_all_resource_data(for_resources=False, for_outputs=True)
return api.format_stack_outputs(stack.outputs)
return api.format_stack_outputs(stack.outputs, resolve_value=False)
@context.request_context
def show_output(self, cntx, stack_identity, output_key):