Merge "Don't resolve outputs when polling events"

This commit is contained in:
Jenkins 2016-11-28 10:22:39 +00:00 committed by Gerrit Code Review
commit 2f4feffd73
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ def poll_for_events(hc, stack_name, action=None, poll_period=5, marker=None,
if no_event_polls >= 2:
# after 2 polls with no events, fall back to a stack get
stack = hc.stacks.get(stack_name)
stack = hc.stacks.get(stack_name, resolve_outputs=False)
stack_status = stack.stack_status
msg = msg_template % dict(
name=stack_name, status=stack_status)