X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=opendaylight%2Fmd-sal%2Fcds-access-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Faccess%2Fcommands%2FOutOfOrderRequestException.java;h=cd110d66b6aa708623fcca696a9daaec17872d44;hb=refs%2Fchanges%2F89%2F57289%2F4;hp=07a3dba6200f80fdd1ee64dc9e94a38e25cce179;hpb=5fd8e6506248cc34da72281a1662612f6c2b2f9a;p=controller.git diff --git a/opendaylight/md-sal/cds-access-api/src/main/java/org/opendaylight/controller/cluster/access/commands/OutOfOrderRequestException.java b/opendaylight/md-sal/cds-access-api/src/main/java/org/opendaylight/controller/cluster/access/commands/OutOfOrderRequestException.java index 07a3dba620..cd110d66b6 100644 --- a/opendaylight/md-sal/cds-access-api/src/main/java/org/opendaylight/controller/cluster/access/commands/OutOfOrderRequestException.java +++ b/opendaylight/md-sal/cds-access-api/src/main/java/org/opendaylight/controller/cluster/access/commands/OutOfOrderRequestException.java @@ -11,8 +11,8 @@ import com.google.common.annotations.Beta; import org.opendaylight.controller.cluster.access.concepts.RequestException; /** - * A {@link RequestException} indicating that the backend has received an unexpected request. This would typically - * mean that messages are not arriving in the sequence they were generated by the frontend. + * A {@link RequestException} indicating that the backend has received a Request whose sequence does not match the + * next expected sequence for the target. This is a hard error, as it indicates a Request is missing in the stream. * * @author Robert Varga */ @@ -26,6 +26,6 @@ public final class OutOfOrderRequestException extends RequestException { @Override public boolean isRetriable() { - return true; + return false; } }