Skip to content
This repository has been archived by the owner on May 25, 2023. It is now read-only.

Commit

Permalink
Only get k8s involved if a member is Removed
Browse files Browse the repository at this point in the history
  • Loading branch information
dwijnand committed Aug 17, 2018
1 parent ebb2e7a commit 4b1451f
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -27,9 +27,9 @@ class ClusterStatusCheck extends ReadinessCheck with HealthCheck {
case MemberStatus.Joining => true
case MemberStatus.WeaklyUp => true
case MemberStatus.Up => true
case MemberStatus.Leaving => false
case MemberStatus.Exiting => false
case MemberStatus.Down => false
case MemberStatus.Leaving => true
case MemberStatus.Exiting => true
case MemberStatus.Down => true
case MemberStatus.Removed => false
}

Expand Down

0 comments on commit 4b1451f

Please sign in to comment.