Skip to content

Commit 1f35526

Browse files
authored
RD-2214 Warn about queued executions (#1297)
1 parent c6d6179 commit 1f35526

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

cloudify_cli/execution_events_fetcher.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,10 @@ def wait_for_execution_group(client,
269269
if execution_group.status in Execution.END_STATES:
270270
return execution_group
271271

272+
if logger is not None and execution_group.status == Execution.QUEUED:
273+
logger.info("Executions have been queued: you can keep waiting "
274+
"for the executions to start or interrupt (eg. ^C).\n")
275+
272276
if timeout is not None:
273277
deadline = time.time() + timeout
274278

0 commit comments

Comments
 (0)