4a88302f49
* Task result proxies were needed to be able to access task result as $.task_name. But this was deprecated in Mitaka in favor of using task() YAQL function. So it's time to get rid of complicated internal machinery before making further improvements Change-Id: I9b8c1c9ac6e9561c6aa66151011ae2f7d906179a Implements: blueprint mistral-remove-task-result-proxies
14 lines
193 B
YAML
14 lines
193 B
YAML
---
|
|
version: '2.0'
|
|
name: test
|
|
|
|
workflows:
|
|
test:
|
|
type: direct
|
|
|
|
tasks:
|
|
hello:
|
|
action: std.echo output="Hello"
|
|
publish:
|
|
result: <% task(hello).result %>
|