From 4a731f83246278480c4db9a08556ac1e2e028a71 Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Mon, 17 Feb 2020 12:06:43 -0800 Subject: [PATCH] Fixed catalog db connection --- deploy/aro/infrastructure/azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/aro/infrastructure/azure-pipelines.yml b/deploy/aro/infrastructure/azure-pipelines.yml index 4e078c2f3..1db06964b 100644 --- a/deploy/aro/infrastructure/azure-pipelines.yml +++ b/deploy/aro/infrastructure/azure-pipelines.yml @@ -20,7 +20,7 @@ stages: displayName: 'Infrastructure Deployment' variables: SqlHostName: $[format('mssql-server-linux.{0}.svc', variables['OpenShiftProject'])] - CatalogDbConnection: $[format('Server={0};Database=Microsoft.eShopOnContainers.Services.CatalogDb;User Id={1};Password={2}', variables['SqlHostName'], variables['SqlUsername'], variables['SqlPassword'])] + CatalogDbConnection: 'Server=$(SqlHostName);Database=Microsoft.eShopOnContainers.Services.CatalogDb;User Id=$(SqlUsername);Password=$(SqlPassword)' IdentityDbConnection: $[format('Server={0};Database=Microsoft.eShopOnContainers.Services.IdentityDb;User Id={1};Password={2}', variables['SqlHostName'], variables['SqlUsername'], variables['SqlPassword'])] MarketingDbConnection: $[format('Server={0};Database=Microsoft.eShopOnContainers.Services.MarketingDb;User Id={1};Password={2}', variables['SqlHostName'], variables['SqlUsername'], variables['SqlPassword'])] OrderingDbConnection: $[format('Server={0};Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id={1};Password={2}', variables['SqlHostName'], variables['SqlUsername'], variables['SqlPassword'])]