Skip to content

Commit

Permalink
something went boom
Browse files Browse the repository at this point in the history
  • Loading branch information
scottsauber committed Nov 18, 2024
1 parent 45ede3c commit 9996a54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/WorkshopDemo/HealthChecks/WorkshopDemoHealthCheck.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ public class WorkshopDemoHealthCheck : IHealthCheck
{
public Task<HealthCheckResult> CheckHealthAsync(HealthCheckContext context, CancellationToken cancellationToken = default)
{
return Task.FromResult(HealthCheckResult.Healthy("A healthy result."));
return Task.FromResult(HealthCheckResult.Unhealthy("Something went boom"));
}
}

0 comments on commit 9996a54

Please sign in to comment.