Skip to content

Commit a9a9c0f

Browse files
ID-1276 Fix bard url value injection to cromwell-runner-app (#4709)
1 parent 5759fb0 commit a9a9c0f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

http/src/main/scala/org/broadinstitute/dsde/workbench/leonardo/app/CromwellRunnerAppInstall.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ class CromwellRunnerAppInstall[F[_]](config: CromwellRunnerAppConfig,
134134
raw"sam.acrPullActionIdentityResourceId=${params.billingProfileId.value}",
135135

136136
// Bard configs
137-
raw"bard.baseUri=${config.bardBaseUri}",
137+
raw"bard.bardUrl=${config.bardBaseUri}",
138138
raw"bard.enabled=${config.bardEnabled}"
139139
)
140140
} yield Values(values.mkString(","))

http/src/test/scala/org/broadinstitute/dsde/workbench/leonardo/app/CromwellRunnerAppInstallSpec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class CromwellRunnerAppInstallSpec extends BaseAppInstallSpec {
6767
s"ecm.baseUri=https://externalcreds.dsde-dev.broadinstitute.org," +
6868
s"sam.baseUri=https://sam.test.org:443," +
6969
s"sam.acrPullActionIdentityResourceId=spend-profile," +
70-
"bard.baseUri=https://terra-bard-dev.appspot.com," +
70+
"bard.bardUrl=https://terra-bard-dev.appspot.com," +
7171
"bard.enabled=false"
7272
}
7373

0 commit comments

Comments
 (0)