Skip to content

Commit

Permalink
fix(byoLongevityPipeline): fix defaultValue of extra_environment_vari…
Browse files Browse the repository at this point in the history
…ables

	It used undefined parameter "pipelineParams".
	refs: d2236ea
yarongilor authored and fruch committed Aug 28, 2024
1 parent 253b915 commit 7e7e44e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vars/byoLongevityPipeline.groovy
Original file line number Diff line number Diff line change
@@ -106,7 +106,7 @@ def call() {
string(defaultValue: "[email protected]",
description: 'email recipients of email report',
name: 'email_recipients')
text(defaultValue: "${pipelineParams.get('extra_environment_variables', '')}",
text(defaultValue: "",
description: (
'Extra environment variables to be set in the test environment, uses the java Properties File Format.\n' +
'Example:\n' +

0 comments on commit 7e7e44e

Please sign in to comment.