BUG-5020 Handling exception while submission 05/34505/4
authorShuva Jyoti Kar <shuva.jyoti.kar@ericsson.com>
Thu, 11 Feb 2016 20:03:12 +0000 (01:33 +0530)
committerAnil Vishnoi <vishnoianil@gmail.com>
Thu, 11 Feb 2016 22:28:03 +0000 (14:28 -0800)
Change-Id: I755c0f85d25fd7f30b77c9ea6765c5e0c185153b
Signed-off-by: Shuva Jyoti Kar <shuva.jyoti.kar@ericsson.com>
Signed-off-by: Anil Vishnoi <vishnoianil@gmail.com>
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);