Local-ucast-macs not cleared from oper-topo DS.
[ovsdb.git] / hwvtepsouthbound / hwvtepsouthbound-impl / src / main / java / org / opendaylight / ovsdb / hwvtepsouthbound / transactions / md / TransactionInvokerImpl.java
index 251e4dc6bc0f7c55d09b9c169cee97d2d45e6e23..eb2f09add00aecb1cae2bbebda084f4a99da4334 100644 (file)
@@ -125,11 +125,13 @@ public class TransactionInvokerImpl implements TransactionInvoker,TransactionCha
             @Override
             public void onSuccess(final Object result) {
                 forgetSuccessfulTransaction(transaction);
+                command.onSuccess();
             }
 
             @Override
             public void onFailure(final Throwable throwable) {
                 // NOOP - handled by failure of transaction chain
+                command.onFailure();
             }
         }, MoreExecutors.directExecutor());
     }