Skip to content

Commit

Permalink
SNOW-964536 Escape dot in split regex
Browse files Browse the repository at this point in the history
Description

Testing
  • Loading branch information
sfc-gh-lthiede committed Nov 22, 2023
1 parent f2ec4ae commit 493e050
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,7 @@ pipeline {
stage('TriggerJobs') {
steps {
script {
def split = ingest_sdk_tag.split('.')
println(split)
def valid_db_name_tag = split.join('_')
println(valid_db_name_tag)
def valid_db_name_tag = ingest_sdk_tag.split('\\.').join('_')
def deployments = [
/*
"qa3": {
Expand All @@ -39,7 +36,7 @@ pipeline {
propagate: true
}
*/
"preprod6": {
"preprod12": {
build job: "SFPerf-Other-Jobs/TPCDS_BDEC_Setup",
parameters: [
string(name: 'ingest_sdk_github_branch', value: ingest_sdk_tag),
Expand Down

0 comments on commit 493e050

Please sign in to comment.