X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-akka-raft%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fraft%2Fmessages%2FServerChangeStatus.java;h=ca6f34c5c446e499157aac9cc9451e8e6bf1b6cf;hb=6ef0b898f2117a4bb3a510c0df7af340f4fc8eca;hp=7616fe6743fd61f3b04f94baa6126ba77e687fce;hpb=77a8b91c42d76b6cb6a1790b35817c08d2ef5e84;p=controller.git diff --git a/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/messages/ServerChangeStatus.java b/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/messages/ServerChangeStatus.java index 7616fe6743..ca6f34c5c4 100644 --- a/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/messages/ServerChangeStatus.java +++ b/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/messages/ServerChangeStatus.java @@ -45,7 +45,12 @@ public enum ServerChangeStatus { PRIOR_REQUEST_CONSENSUS_TIMEOUT, /** - * An unsupported request, for example removing the current leader may not be supported (at least initially) + * An unsupported request, for example removing the leader in a single node cluster. */ NOT_SUPPORTED, + + /** + * Some part of the request is invalid. + */ + INVALID_REQUEST, }