Reputation: 1
I updated AspNetCore.HealthChecks.SqlServer package from version 6.0.2 to 8.0.2.
This is the code that I am using in startup.cs:
services.AddHealthChecks() .AddSqlServer(connectionString, name: "testSql") .AddApplicationInsightsPublisher();
The health checks have stated failing after I updated the package.
I want the health check to work as it was working before (Without reverting back the package). The health check starts to work if the package version is reverted back.
Upvotes: 0
Views: 74