Merge "BUG-5020 Handling exception while submission"
authorAbhijit Kumbhare <abhijit.kumbhare@ericsson.com>
Thu, 11 Feb 2016 23:08:09 +0000 (23:08 +0000)
committerGerrit Code Review <gerrit@opendaylight.org>
Thu, 11 Feb 2016 23:08:09 +0000 (23:08 +0000)
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);