We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f99f672 commit abe62d8Copy full SHA for abe62d8
1 file changed
application/CohortManager/src/Functions/CaasIntegration/receiveCaasFile/Program.cs
@@ -38,7 +38,7 @@
38
services.AddScoped<IRecordsProcessedTracker, RecordsProcessedTracker>(); //Do not change the lifetime of this.
39
services.AddHttpClient<ICheckDemographic, CheckDemographic>(client =>
40
{
41
- client.BaseAddress = new Uri(Environment.GetEnvironmentVariable("DemographicURI"));
+ client.BaseAddress = new Uri(config.DemographicURI);
42
});
43
services.AddScoped<IValidateDates, ValidateDates>();
44
// Register health checks
0 commit comments