Skip to content

Commit ff7f3d7

Browse files
committed
allow inconclusive as healthy
1 parent a8b344d commit ff7f3d7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/StackExchange.Redis/MultiGroupMultiplexer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ internal GroupConnectionChangedEventArgs.ChangeType UpdateState(HealthCheck.Heal
188188
bool isConnected;
189189
if (_muxer is { IsConnected: true } muxer)
190190
{
191-
isConnected = result is HealthCheck.HealthCheckResult.Healthy;
191+
isConnected = result is not HealthCheck.HealthCheckResult.Unhealthy;
192192
SetLatency(muxer.UpdateLatency());
193193
}
194194
else

0 commit comments

Comments
 (0)