Merge "Bug 2101: Do not block processing on transaction submit."
authorEd Warnicke <eaw@cisco.com>
Sat, 27 Sep 2014 22:47:17 +0000 (22:47 +0000)
committerGerrit Code Review <gerrit@opendaylight.org>
Sat, 27 Sep 2014 22:47:17 +0000 (22:47 +0000)
opendaylight/md-sal/statistics-manager/src/main/java/org/opendaylight/controller/md/statistics/manager/impl/StatisticsManagerImpl.java

index 247703f8acb3c60bb24df0f8ffc367867e13e1bc..b848303db3a3f1351aaf420a8f2e6921e3e97a87 100644 (file)
@@ -202,9 +202,9 @@ public class StatisticsManagerImpl implements StatisticsManager, Runnable {
                    }
                } while (op != null);
 
-               LOG.trace("Processed {} operations, submitting transaction {}", ops, tx.getIdentifier());
+                   LOG.trace("Processed {} operations, submitting transaction {}", ops, tx.getIdentifier());
 
-                   tx.submit().checkedGet();
+                   tx.submit(); //.checkedGet();
            } catch (final InterruptedException e) {
                LOG.warn("Stat Manager DS Operation thread interupted!", e);
                finishing = true;