Skip to content

Commit

Permalink
unoops
Browse files Browse the repository at this point in the history
  • Loading branch information
scottsauber committed Nov 17, 2024
1 parent db8d3f1 commit f272da8
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.Unhealthy("Oops"));
return Task.FromResult(HealthCheckResult.Healthy("A healthy result."));
}
}

0 comments on commit f272da8

Please sign in to comment.