summaryrefslogtreecommitdiff
path: root/heatclient/common/event_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'heatclient/common/event_utils.py')
-rw-r--r--heatclient/common/event_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/heatclient/common/event_utils.py b/heatclient/common/event_utils.py
index 4c659aa..3654246 100644
--- a/heatclient/common/event_utils.py
+++ b/heatclient/common/event_utils.py
@@ -216,7 +216,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)