Skip to content

Commit 1b0774e

Browse files
authored
exec group start: add a log showing the exec-group id (#1310)
The id is useful to have, I dont want to check `cfy exe gro li` every time to find it
1 parent 8ba1f51 commit 1b0774e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

cloudify_cli/commands/executions.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -651,6 +651,10 @@ def execution_groups_start(deployment_group, workflow_id, parameters,
651651
force=force,
652652
concurrency=concurrency,
653653
)
654+
logger.info('Execution group %s started: running %s on '
655+
'deployment group %s [concurrency=%s]',
656+
group.id, group.workflow_id, group.deployment_group_id,
657+
group.concurrency)
654658
try:
655659
execution = wait_for_execution_group(client, group,
656660
events_handler=events_logger,

0 commit comments

Comments
 (0)