private void handleElectionAbort(L2StateMessage clusterMsg) {
   if (state == ACTIVE_COORDINATOR) {
     // Cant get Abort back to ACTIVE, if so then there is a split brain
     String error = state + " Received Abort Election  Msg : Possible split brain detected ";
     logger.error(error);
     groupManager.zapNode(
         clusterMsg.messageFrom(), L2HAZapNodeRequestProcessor.SPLIT_BRAIN, error);
   } else {
     debugInfo("ElectionMgr handling election abort");
     electionMgr.handleElectionAbort(clusterMsg);
   }
 }