Skip to content

Commit

Permalink
exec group start: add a log showing the exec-group id (#1310)
Browse files Browse the repository at this point in the history
The id is useful to have, I dont want to check `cfy exe gro li` every
time to find it
  • Loading branch information
tehasdf authored May 20, 2021
1 parent 8ba1f51 commit 1b0774e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cloudify_cli/commands/executions.py
Original file line number Diff line number Diff line change
Expand Up @@ -651,6 +651,10 @@ def execution_groups_start(deployment_group, workflow_id, parameters,
force=force,
concurrency=concurrency,
)
logger.info('Execution group %s started: running %s on '
'deployment group %s [concurrency=%s]',
group.id, group.workflow_id, group.deployment_group_id,
group.concurrency)
try:
execution = wait_for_execution_group(client, group,
events_handler=events_logger,
Expand Down

0 comments on commit 1b0774e

Please sign in to comment.