Do not assert seal transition on forward path
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / databroker / actors / dds / SingleClientHistory.java
index 8220bfaaef6ab7e9bf21e84885c0d5ea507c97b0..db57f1aed51bb08ce23c73c4ba86a2639c9eb0b5 100644 (file)
@@ -19,7 +19,7 @@ import org.slf4j.LoggerFactory;
  * @author Robert Varga
  */
 final class SingleClientHistory extends AbstractClientHistory {
-    private static final Logger LOG = LoggerFactory.getLogger(AbstractClientHistory.class);
+    private static final Logger LOG = LoggerFactory.getLogger(SingleClientHistory.class);
 
     SingleClientHistory(final AbstractDataStoreClientBehavior client, final LocalHistoryIdentifier identifier) {
         super(client, identifier);
@@ -44,6 +44,6 @@ final class SingleClientHistory extends AbstractClientHistory {
     @Override
     ProxyHistory createHistoryProxy(final LocalHistoryIdentifier historyId,
             final AbstractClientConnection<ShardBackendInfo> connection) {
-        return ProxyHistory.createSingle(connection, historyId);
+        return ProxyHistory.createSingle(this, connection, historyId);
     }
 }