diff --git a/ServiceFabric/eShopOnServiceFabric/ApplicationPackageRoot/RabbitMQPkg/ServiceManifest.xml b/ServiceFabric/eShopOnServiceFabric/ApplicationPackageRoot/RabbitMQPkg/ServiceManifest.xml index 0edd5b431..801e88f69 100644 --- a/ServiceFabric/eShopOnServiceFabric/ApplicationPackageRoot/RabbitMQPkg/ServiceManifest.xml +++ b/ServiceFabric/eShopOnServiceFabric/ApplicationPackageRoot/RabbitMQPkg/ServiceManifest.xml @@ -15,7 +15,7 @@ - spring2/rabbitmq + spring2/rabbitmq:3.6.10 diff --git a/ServiceFabric/eShopOnServiceFabric/ApplicationPackageRoot/SqlServerPkg/ServiceManifest.xml b/ServiceFabric/eShopOnServiceFabric/ApplicationPackageRoot/SqlServerPkg/ServiceManifest.xml index 676cf7b6d..652e30383 100644 --- a/ServiceFabric/eShopOnServiceFabric/ApplicationPackageRoot/SqlServerPkg/ServiceManifest.xml +++ b/ServiceFabric/eShopOnServiceFabric/ApplicationPackageRoot/SqlServerPkg/ServiceManifest.xml @@ -15,7 +15,7 @@ - microsoft/mssql-server-windows-developer + microsoft/mssql-server-windows-developer:2016-sp1-windowsservercore-10.0.14393.1480 diff --git a/ServiceFabric/eShopOnServiceFabric/PublishProfiles/Cloud.xml b/ServiceFabric/eShopOnServiceFabric/PublishProfiles/Cloud.xml index 1301dd83f..799e3ad5f 100644 --- a/ServiceFabric/eShopOnServiceFabric/PublishProfiles/Cloud.xml +++ b/ServiceFabric/eShopOnServiceFabric/PublishProfiles/Cloud.xml @@ -20,6 +20,6 @@ AzureActiveDirectory="true" ServerCertThumbprint="0123456789012345678901234567890123456789" /> --> - + \ No newline at end of file diff --git a/src/Web/WebMVC/Startup.cs b/src/Web/WebMVC/Startup.cs index 74a10c15e..8dcebaef0 100644 --- a/src/Web/WebMVC/Startup.cs +++ b/src/Web/WebMVC/Startup.cs @@ -124,8 +124,10 @@ namespace Microsoft.eShopOnContainers.WebMVC } - if (!string.IsNullOrEmpty(Configuration["PATH_BASE"])) + var pathBase = Configuration["PATH_BASE"]; + if (!string.IsNullOrEmpty(pathBase)) { + loggerFactory.CreateLogger("init").LogDebug($"Using PATH BASE '{pathBase}'"); app.UsePathBase(Configuration["PATH_BASE"]); }