netty试图打开服务器端套接字时无限循环的延迟?

netty试图打开服务器端套接字时无限循环的延迟?,netty,Netty,我正在阅读Netty的源代码,在ServerBootstrap.bind(final SocketAddress localAddress)方法中,我发现当抛出InterruptedException时可能会有一个无限循环(检查下面的代码),我的理解正确吗 do { try { future = futureQueue.poll(Integer.MAX_VALUE, TimeUnit.SECONDS); } catch (InterruptedException

我正在阅读Netty的源代码,在ServerBootstrap.bind(final SocketAddress localAddress)方法中,我发现当抛出InterruptedException时可能会有一个无限循环(检查下面的代码),我的理解正确吗

do {
    try {
        future = futureQueue.poll(Integer.MAX_VALUE, TimeUnit.SECONDS);
    } catch (InterruptedException e) {
        interrupted = true;
    }
} while (future == null);

是的,没错。。你能打开一个bug报告[1]吗

[1]