BUG-8402: Separate out OutOfOrderRequestException
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / commands / OutOfOrderRequestException.java
index 07a3dba6200f80fdd1ee64dc9e94a38e25cce179..cd110d66b6aa708623fcca696a9daaec17872d44 100644 (file)
@@ -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;
     }
 }