Netty 当路由中配置了多个tcp站时,驼峰网络会导致死锁

Netty 当路由中配置了多个tcp站时,驼峰网络会导致死锁,netty,apache-camel,Netty,Apache Camel,当试图在一条路由中使用两个以上的netty端点时,我遇到了以下异常 I/O线程中的java.lang.IllegalStateException:await*()会导致死锁或性能突然下降。改用addListener()或从其他线程调用wait*() 示例路线: from("netty:tcp://localhost:7000?textline=true") .bean(DummyPr

当试图在一条路由中使用两个以上的netty端点时,我遇到了以下异常

I/O线程中的java.lang.IllegalStateException:await*()会导致死锁或性能突然下降。改用addListener()或从其他线程调用wait*()

示例路线:

                            from("netty:tcp://localhost:7000?textline=true") 
                            .bean(DummyProcessor.class) 
                            .to("netty:tcp://localhost:7001?textline=true") 
                            .bean(DummyProcessor.class) 
                            .to("netty:tcp://localhost:7002?textline=true") 
                            .bean(DummyProcessor.class) 
                            .to("netty:tcp://localhost:7003?textline=true") 
                            .bean(DummyProcessor.class) 
                            .to("netty:tcp://localhost:7004?textline=true") 
                            .bean(DummyProcessor.class); 
骆驼版本:2.11 netty 3.6.5


可能的重复项已由CAMEL-6442修复:

已由CAMEL-6442修复: