Remove references to the current task from task() in deployment.yaml

When using the task() expression function within a mistral task the name
is only needed when referncing a different task. These were found with
the mistral-lint PyPI package.

Change-Id: I1c5b44d6f9567b52579d81b8a0367baea271b464
This commit is contained in:
Dougal Matthews 2017-10-20 10:33:19 +01:00
parent 2a8efeb0f6
commit 91203a68e8
1 changed files with 3 additions and 3 deletions

View File

@ -66,7 +66,7 @@ workflows:
action: nova.servers_list
on-success: deploy_on_servers
publish:
servers_with_name: <% task(get_servers_matching).result._info.where($.name.indexOf(execution().input.server_name) > -1) %>
servers_with_name: <% task().result._info.where($.name.indexOf(execution().input.server_name) > -1) %>
deploy_on_servers:
on-success: send_success_message
@ -162,8 +162,8 @@ workflows:
action: heat.stacks_get stack_id=<% $.container %>
on-error: deploy
on-success:
- set_stack_in_progress: <% "_IN_PROGRESS" in task(get_heat_stack).result.stack_status %>
- deploy: <% not "_IN_PROGRESS" in task(get_heat_stack).result.stack_status %>
- set_stack_in_progress: <% "_IN_PROGRESS" in task().result.stack_status %>
- deploy: <% not "_IN_PROGRESS" in task().result.stack_status %>
set_stack_in_progress:
on-success: send_message