Skip to content

Commit 170d342

Browse files
committed
Update predeploy scripts to use AZURE_SERVICE_BUS_HOST instead of AZURE_SERVICE_BUS_URI
1 parent 8401b06 commit 170d342

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

azd-hooks/predeploy.ps1

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ makelineService:
101101
"@ | Out-File -FilePath custom-values.yaml -Append -Encoding utf8
102102

103103
# Add Azure Service Bus to makeline-service if provided
104-
# (Parity with bash: check URI presence but write HOST value)
105104
# (Parity with bash: check HOST presence and write HOST value)
106105
if ($env:AZURE_SERVICE_BUS_HOST) {
107106
@"

azd-hooks/predeploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ makelineService:
104104
EOF
105105

106106
# Add Azure Service Bus to makeline-service if provided
107-
if [ -n "${AZURE_SERVICE_BUS_URI}" ]; then
107+
if [ -n "${AZURE_SERVICE_BUS_HOST}" ]; then
108108
cat << EOF >> custom-values.yaml
109109
orderQueueHost: ${AZURE_SERVICE_BUS_HOST}
110110
EOF

0 commit comments

Comments
 (0)