Bug 2101: Do not block processing on transaction submit. 27/11627/3
authorTony Tkacik <ttkacik@cisco.com>
Sat, 27 Sep 2014 15:25:23 +0000 (17:25 +0200)
committerTony Tkacik <ttkacik@cisco.com>
Sat, 27 Sep 2014 15:38:33 +0000 (17:38 +0200)
Change-Id: Ibdc75aa670254f84aa70647d655e4e1438edd9e9
Signed-off-by: Tony Tkacik <ttkacik@cisco.com>
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;