We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 793c94d commit 6cebbacCopy full SHA for 6cebbac
src/PdfSmith/Program.cs
@@ -133,7 +133,7 @@
133
134
builder.Services.AddHealthChecks()
135
.AddDbContextCheck<ApplicationDbContext>("Database", tags: ["ready"])
136
- .AddCheck<PlaywrightHealthCheck>("Playwright", tags: ["live"]);
+ .AddCheck<PlaywrightHealthCheck>("Playwright", tags: ["ready"]);
137
138
if (builder.Environment.IsProduction())
139
{
@@ -179,7 +179,7 @@
179
180
app.MapHealthChecks("/healthz/live", new HealthCheckOptions
181
182
- Predicate = healthCheck => healthCheck.Tags.Contains("live"),
+ Predicate = _ => false,
183
ResponseWriter = HealthChecksResponseWriter()
184
});
185
0 commit comments