Skip to content

Commit

Permalink
Skip CONFIG_JSON in rerun Grinder link (adoptium#5938)
Browse files Browse the repository at this point in the history
- Remove the CONFIG_JSON from the rerun Grinder link to avoid unnecessary
data in the URL

related:runtimes/backlog#1600

Signed-off-by: Anna Babu Palathingal <anna.bp@ibm.com>
  • Loading branch information
annaibm authored Feb 4, 2025
1 parent 062a1dc commit 2af60d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildenv/jenkins/JenkinsfileBase
Original file line number Diff line number Diff line change
Expand Up @@ -1201,7 +1201,7 @@ def addGrinderLink() {
def customTargetKeyValue = ""
def urlParams = params.findAll {
// Exclude separator and help text parameters from url
!(it.key.endsWith('_PARAMS') || it.key.endsWith('_HELP_TEXT'))
!(it.key.endsWith('_PARAMS') || it.key.endsWith('_HELP_TEXT') || it.key == "CONFIG_JSON")
}
urlParams.each { key, value ->
value = URLEncoder.encode(value.toString(), "UTF-8")
Expand Down

0 comments on commit 2af60d4

Please sign in to comment.