@@ -34,15 +34,15 @@ public void ConfigureServices(IServiceCollection services)
3434 minutes = minutesParsed ;
3535 }
3636
37- checks . AddUrlCheckIfNotNull ( Configuration [ "OrderingUrl" ] , TimeSpan . FromMinutes ( minutes ) ) ;
37+ checks . AddUrlCheckIfNotNull ( Configuration [ "OrderingUrl" ] , TimeSpan . FromMinutes ( minutes ) ) ;
3838 checks . AddUrlCheckIfNotNull ( Configuration [ "BasketUrl" ] , TimeSpan . Zero ) ; //No cache for this HealthCheck, better just for demos
39- checks . AddUrlCheckIfNotNull ( Configuration [ "CatalogUrl" ] , TimeSpan . FromMinutes ( minutes ) ) ;
40- checks . AddUrlCheckIfNotNull ( Configuration [ "IdentityUrl" ] , TimeSpan . FromMinutes ( minutes ) ) ;
39+ checks . AddUrlCheckIfNotNull ( Configuration [ "CatalogUrl" ] , TimeSpan . FromMinutes ( minutes ) ) ;
40+ checks . AddUrlCheckIfNotNull ( Configuration [ "IdentityUrl" ] , TimeSpan . FromMinutes ( minutes ) ) ;
4141 checks . AddUrlCheckIfNotNull ( Configuration [ "LocationsUrl" ] , TimeSpan . FromMinutes ( minutes ) ) ;
42- checks . AddUrlCheckIfNotNull ( Configuration [ "MarketingUrl" ] , TimeSpan . FromMinutes ( minutes ) ) ;
43- checks . AddUrlCheckIfNotNull ( Configuration [ "PaymentUrl" ] , TimeSpan . FromMinutes ( minutes ) ) ;
44- checks . AddUrlCheckIfNotNull ( Configuration [ "mvc" ] , TimeSpan . FromMinutes ( minutes ) ) ;
45- checks . AddUrlCheckIfNotNull ( Configuration [ "spa" ] , TimeSpan . FromMinutes ( minutes ) ) ;
42+ checks . AddUrlCheckIfNotNull ( Configuration [ "MarketingUrl" ] , TimeSpan . FromMinutes ( minutes ) ) ;
43+ checks . AddUrlCheckIfNotNull ( Configuration [ "PaymentUrl" ] , TimeSpan . FromMinutes ( minutes ) ) ;
44+ checks . AddUrlCheckIfNotNull ( Configuration [ "mvc" ] , TimeSpan . Zero ) ; //No cache for this HealthCheck, better just for demos
45+ checks . AddUrlCheckIfNotNull ( Configuration [ "spa" ] , TimeSpan . Zero ) ; //No cache for this HealthCheck, better just for demos
4646 } ) ;
4747
4848 services . AddMvc ( ) ;
0 commit comments