Add missing queue_name input parameter for listing validations
The list validations workflow does not have defines the queue_name parameter in the input section. Thus the workflow fails when trying to read that variable. Change-Id: I294ab0016fda9587b405ef08dba3212b8e46a816 Implements: blueprint validation-framework Closes-bug: 1815725
This commit is contained in:
parent
17579cd262
commit
882d9a7695
@ -185,6 +185,7 @@ workflows:
|
|||||||
input:
|
input:
|
||||||
- group_names: []
|
- group_names: []
|
||||||
- plan: overcloud
|
- plan: overcloud
|
||||||
|
- queue_name: tripleo
|
||||||
output:
|
output:
|
||||||
validations: <% $.validations %>
|
validations: <% $.validations %>
|
||||||
tags:
|
tags:
|
||||||
@ -205,7 +206,8 @@ workflows:
|
|||||||
workflow: tripleo.messaging.v1.send
|
workflow: tripleo.messaging.v1.send
|
||||||
input:
|
input:
|
||||||
queue_name: <% $.queue_name %>
|
queue_name: <% $.queue_name %>
|
||||||
type: <% execution() %>
|
type: <% execution().name %>
|
||||||
|
execution: <% execution() %>
|
||||||
status: <% $.status %>
|
status: <% $.status %>
|
||||||
message: <% $.get('message', '') %>
|
message: <% $.get('message', '') %>
|
||||||
payload:
|
payload:
|
||||||
|
Loading…
Reference in New Issue
Block a user