Skip to content

Instantly share code, notes, and snippets.

@ericacm
Last active October 11, 2015 23:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericacm/3935861 to your computer and use it in GitHub Desktop.
Save ericacm/3935861 to your computer and use it in GitHub Desktop.
clusterStatus
def clusterStatus: ClusterStatus = {
val isLeader = leaderLatch.hasLeadership
val participants = leaderLatch.getParticipants.asScala
val leader = participants.find(_.isLeader).map(_.getId).getOrElse("<none>")
ClusterStatus(nodeId, isLeader, leader, participants.map(_.getId))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment