From 6a2fceb57c6d7f8e709e938924c1d67ba96e5854 Mon Sep 17 00:00:00 2001 From: David Fowler Date: Sun, 7 May 2023 17:01:29 -0700 Subject: [PATCH] Fix more urls --- .../Catalog/Catalog.API/appsettings.Development.json | 3 +-- src/Services/Identity/Identity.API/appsettings.json | 6 +++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/Services/Catalog/Catalog.API/appsettings.Development.json b/src/Services/Catalog/Catalog.API/appsettings.Development.json index b41dc527c..95e5cf490 100644 --- a/src/Services/Catalog/Catalog.API/appsettings.Development.json +++ b/src/Services/Catalog/Catalog.API/appsettings.Development.json @@ -1,5 +1,4 @@ { "ConnectionString": "Server=tcp:127.0.0.1,5433;Initial Catalog=Microsoft.eShopOnContainers.Services.CatalogDb;User Id=sa;Password=Pass@word", - "PicBaseUrl": "http://localhost:5101/api/v1/catalog/items/[0]/pic/", - "EventBusConnection": "localhost" + "PicBaseUrl": "http://localhost:5222/api/v1/catalog/items/[0]/pic/" } \ No newline at end of file diff --git a/src/Services/Identity/Identity.API/appsettings.json b/src/Services/Identity/Identity.API/appsettings.json index 99f585c38..cc633ba9e 100644 --- a/src/Services/Identity/Identity.API/appsettings.json +++ b/src/Services/Identity/Identity.API/appsettings.json @@ -6,8 +6,6 @@ } }, "IsClusterEnv": "False", - "MvcClient": "http://localhost:5100", - "SpaClient": "http://localhost:5104", "XamarinCallback": "http://localhost:5105/xamarincallback", "UseCustomizationData": false, "ApplicationInsights": { @@ -18,5 +16,7 @@ "BasketApiClient": "http://localhost:5221", "OrderingApiClient": "http://localhost:5224", "WebShoppingAggClient": "http://localhost:5229", - "WebhooksApiClient": "http://localhost:5227" + "WebhooksApiClient": "http://localhost:5227", + "MvcClient": "http://localhost:5331", + "SpaClient": "http://localhost:5104" }