Skip to content

Commit

Permalink
fix(api): fix pip parameters for manual run (#3429)
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 authored and richardlt committed Oct 10, 2018
1 parent e2a99e7 commit 1cbe80f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/api/workflow/process.go
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ func processWorkflowNodeRun(ctx context.Context, db gorp.SqlExecutor, store cach
}
runPayload = sdk.ParametersMapMerge(runPayload, m1)
run.Payload = runPayload
run.PipelineParameters = sdk.ParametersMerge(m.PipelineParameters, n.Context.DefaultPipelineParameters)
run.PipelineParameters = sdk.ParametersMerge(n.Context.DefaultPipelineParameters, m.PipelineParameters)
run.BuildParameters = append(run.BuildParameters, sdk.Parameter{
Name: "cds.triggered_by.email",
Type: sdk.StringParameter,
Expand Down

0 comments on commit 1cbe80f

Please sign in to comment.