Changed port for accessing the APIs
This commit is contained in:
@ -12,7 +12,7 @@ namespace ReportingServices.UI.Controllers
|
|||||||
public PlanningReportController(ILogger<PlanningReportController> logger)
|
public PlanningReportController(ILogger<PlanningReportController> logger)
|
||||||
{
|
{
|
||||||
_logger = logger;
|
_logger = logger;
|
||||||
_baseUrl = "https://localhost:7196/api/" + "ScrapeDB/";
|
_baseUrl = "https://localhost:50201/api/" + "ScrapeDB/";
|
||||||
|
|
||||||
_logger.LogInformation("Base API Address: {baseUrl}", _baseUrl);
|
_logger.LogInformation("Base API Address: {baseUrl}", _baseUrl);
|
||||||
}
|
}
|
||||||
|
@ -16,10 +16,8 @@ namespace ReportingServices.UI.Controllers
|
|||||||
public ProductionReportController(ILogger<ProductionReportController> logger)
|
public ProductionReportController(ILogger<ProductionReportController> logger)
|
||||||
{
|
{
|
||||||
_logger = logger;
|
_logger = logger;
|
||||||
_baseFTUrl = "https://localhost:7196/api/";
|
_baseDBUrl = "https://localhost:50201/api/";
|
||||||
_baseDBUrl = "https://localhost:7196/api/";
|
|
||||||
|
|
||||||
_logger.LogInformation("Base FabTime Address: {baseUrl}", _baseFTUrl);
|
|
||||||
_logger.LogInformation("Base Database Address: {baseUrl}", _baseDBUrl);
|
_logger.LogInformation("Base Database Address: {baseUrl}", _baseDBUrl);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user