X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2FNoOpTransactionContext.java;h=197cd9fa83c00b569b25d59d982328774fb44436;hp=84f07760f53f4a50b7fd3da61b2b3ddeb7f3fe31;hb=daaef05cbf70e6cbec9af181258faead6d9620a6;hpb=608c2722054a167e2e6817fa2901876228f7685f diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/NoOpTransactionContext.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/NoOpTransactionContext.java index 84f07760f5..197cd9fa83 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/NoOpTransactionContext.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/NoOpTransactionContext.java @@ -33,44 +33,56 @@ final class NoOpTransactionContext extends AbstractTransactionContext { @Override public void closeTransaction() { - LOG.debug("NoOpTransactionContext {} closeTransaction called", identifier); + LOG.debug("NoOpTransactionContext {} closeTransaction called", getIdentifier()); + } + + @Override + public boolean supportsDirectCommit() { + return true; + } + + @Override + public Future directCommit() { + LOG.debug("Tx {} directCommit called, failure: {}", getIdentifier(), failure); + operationLimiter.release(); + return akka.dispatch.Futures.failed(failure); } @Override public Future readyTransaction() { - LOG.debug("Tx {} readyTransaction called", identifier); + LOG.debug("Tx {} readyTransaction called, failure: {}", getIdentifier(), failure); operationLimiter.release(); return akka.dispatch.Futures.failed(failure); } @Override public void deleteData(YangInstanceIdentifier path) { - LOG.debug("Tx {} deleteData called path = {}", identifier, path); + LOG.debug("Tx {} deleteData called path = {}", getIdentifier(), path); operationLimiter.release(); } @Override public void mergeData(YangInstanceIdentifier path, NormalizedNode data) { - LOG.debug("Tx {} mergeData called path = {}", identifier, path); + LOG.debug("Tx {} mergeData called path = {}", getIdentifier(), path); operationLimiter.release(); } @Override public void writeData(YangInstanceIdentifier path, NormalizedNode data) { - LOG.debug("Tx {} writeData called path = {}", identifier, path); + LOG.debug("Tx {} writeData called path = {}", getIdentifier(), path); operationLimiter.release(); } @Override public void readData(final YangInstanceIdentifier path, SettableFuture>> proxyFuture) { - LOG.debug("Tx {} readData called path = {}", identifier, path); + LOG.debug("Tx {} readData called path = {}", getIdentifier(), path); operationLimiter.release(); proxyFuture.setException(new ReadFailedException("Error reading data for path " + path, failure)); } @Override public void dataExists(YangInstanceIdentifier path, SettableFuture proxyFuture) { - LOG.debug("Tx {} dataExists called path = {}", identifier, path); + LOG.debug("Tx {} dataExists called path = {}", getIdentifier(), path); operationLimiter.release(); proxyFuture.setException(new ReadFailedException("Error checking exists for path " + path, failure)); }