BUG-5280: fix problems identified by integration tests
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / commands / CommitLocalTransactionRequest.java
index 495111096ca6cffbf8f017c75305b1003032ffd6..48f5cc58718f9cd4f4693f5dc5acd71d93b86a0f 100644 (file)
@@ -33,9 +33,9 @@ public final class CommitLocalTransactionRequest
     private final DataTreeModification mod;
     private final boolean coordinated;
 
-    public CommitLocalTransactionRequest(@Nonnull final TransactionIdentifier identifier,
+    public CommitLocalTransactionRequest(@Nonnull final TransactionIdentifier identifier, final long sequence,
             @Nonnull final ActorRef replyTo, @Nonnull final DataTreeModification mod, final boolean coordinated) {
-        super(identifier, 0, replyTo);
+        super(identifier, sequence, replyTo);
         this.mod = Preconditions.checkNotNull(mod);
         this.coordinated = coordinated;
     }