Fixed TicketFinisher to catch *all* exceptions. 45/3945/2
authorEd Warnicke <eaw@cisco.com>
Fri, 27 Dec 2013 17:15:19 +0000 (09:15 -0800)
committerGerrit Code Review <gerrit@opendaylight.org>
Fri, 27 Dec 2013 17:53:59 +0000 (17:53 +0000)
Change-Id: I2a708eba8a5e8e8ed1c9def9b7293ac85bd3d972
Signed-off-by: Ed Warnicke <eaw@cisco.com>
openflowplugin/src/main/java/org/opendaylight/openflowplugin/openflow/md/queue/TicketFinisher.java

index f9af9f0d68916b2221141b14d862d2da409ab7e5..61d213b5c3874b50d215f66994a3482d4ade8af0 100644 (file)
@@ -63,7 +63,7 @@ public class TicketFinisher<OUT> implements Runnable {
                         }
                     }
                 }
-            } catch (ExecutionException | InterruptedException e) {
+            } catch (Exception e) {
                 LOG.error(e.getMessage(), e);
             }
         }