Merge "BUG-5020 Handling exception while submission"
[openflowplugin.git] / applications / inventory-manager / src / main / java / org / opendaylight / openflowplugin / applications / inventory / manager / FlowCapableInventoryProvider.java
index 328599f0096f9957af18a70fdc6a6e70120ee6d8..c7dd08e20661128bdb59c65f7e167d59617c983c 100644 (file)
@@ -92,7 +92,11 @@ class FlowCapableInventoryProvider implements AutoCloseable, Runnable, Transacti
                         op = null;
                     }
                 } while (op != null);
-                submitOperations(opsToApply);
+                try {
+                        submitOperations(opsToApply);
+                    } catch (Exception e) {
+                    LOG.warn("Processing exception while submitOperations :", e);
+               }
             }
         } catch (final InterruptedException e) {
             LOG.info("Processing interrupted, terminating", e);