Thomas Vachuska

Reverted to catching Throwable for the netty native epoll stuff.

Change-Id: I41cf621505cdcc3139fadb39a4ccacfe0123ef5c
......@@ -102,7 +102,7 @@ public class NettyMessagingManager implements MessagingService {
serverChannelClass = EpollServerSocketChannel.class;
clientChannelClass = EpollSocketChannel.class;
return;
} catch (Exception e) {
} catch (Throwable e) {
log.warn("Failed to initialize native (epoll) transport. Reason: {}. Proceeding with nio.", e.getMessage());
}
clientGroup = new NioEventLoopGroup();
......