Skip to content

Commit

Permalink
fix(api): given variable name for pipeline parameters in suggest #4487
Browse files Browse the repository at this point in the history
Signed-off-by: Benjamin Coenen <benjamin.coenen@corp.ovh.com>
  • Loading branch information
bnjjj committed Aug 7, 2019
1 parent 90a52ba commit be7c66b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/api/stage.go
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ func (api *API) getStageConditionsHandler() service.Handler {
}

for _, pipParam := range pipParams {
data.ConditionNames = append(data.ConditionNames, pipParam.Name)
data.ConditionNames = append(data.ConditionNames, "cds.pip."+pipParam.Name)
}

// add cds variable
Expand Down

0 comments on commit be7c66b

Please sign in to comment.