From 9a7184841d3cd5bbdf2e8526858714dfd7c1f586 Mon Sep 17 00:00:00 2001 From: Daniel Wathen Date: Wed, 11 Jan 2023 10:11:32 -0700 Subject: [PATCH] Changed port for accessing the APIs --- ReportingServices.UI/Controllers/PlanningReportController.cs | 2 +- .../Controllers/ProductionReportController.cs | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/ReportingServices.UI/Controllers/PlanningReportController.cs b/ReportingServices.UI/Controllers/PlanningReportController.cs index 96c8505..fd77425 100644 --- a/ReportingServices.UI/Controllers/PlanningReportController.cs +++ b/ReportingServices.UI/Controllers/PlanningReportController.cs @@ -12,7 +12,7 @@ namespace ReportingServices.UI.Controllers public PlanningReportController(ILogger logger) { _logger = logger; - _baseUrl = "https://localhost:7196/api/" + "ScrapeDB/"; + _baseUrl = "https://localhost:50201/api/" + "ScrapeDB/"; _logger.LogInformation("Base API Address: {baseUrl}", _baseUrl); } diff --git a/ReportingServices.UI/Controllers/ProductionReportController.cs b/ReportingServices.UI/Controllers/ProductionReportController.cs index 3815eef..b322458 100644 --- a/ReportingServices.UI/Controllers/ProductionReportController.cs +++ b/ReportingServices.UI/Controllers/ProductionReportController.cs @@ -16,10 +16,8 @@ namespace ReportingServices.UI.Controllers public ProductionReportController(ILogger logger) { _logger = logger; - _baseFTUrl = "https://localhost:7196/api/"; - _baseDBUrl = "https://localhost:7196/api/"; + _baseDBUrl = "https://localhost:50201/api/"; - _logger.LogInformation("Base FabTime Address: {baseUrl}", _baseFTUrl); _logger.LogInformation("Base Database Address: {baseUrl}", _baseDBUrl); }