BUG-5280: implement message queueing
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / actors / client / SavingClientActorBehavior.java
index ac5f12fb9d5d8cc00c8a91433a298ad98ee5724c..f8977344c3ab9190397964d03f25fe4fdbaaad71 100644 (file)
@@ -33,7 +33,7 @@ final class SavingClientActorBehavior extends RecoveredClientActorBehavior<Initi
             return null;
         } else if (command instanceof SaveSnapshotSuccess) {
             context().unstash();
-            return context().createBehavior(new ClientActorContext(self(), persistenceId(), myId));
+            return context().createBehavior(myId);
         } else {
             LOG.debug("{}: stashing command {}", persistenceId(), command);
             context().stash();