In the last beta code that was released; a change to the DefaultChannelFuture is causing me some issues. The code for the await methods (await() and awaitUninterruptibly()) where changed to include a check for a deadlocking issue.<br>
<br>Code Committed - <a href="http://www.jboss.org/netty/community.html#nabble-td2681425">http://www.jboss.org/netty/community.html#nabble-td2681425</a> This is in response I assume for the Jira issue - <a href="https://jira.jboss.org/jira/browse/NETTY-140">https://jira.jboss.org/jira/browse/NETTY-140</a>.<br>
<br>This changes as it is committed now means that you can't use the await**() methods from inside any SimpleChannelHandler(s). What I am doing in my code is based on a particular incoming message. I am building a connection to another server to relay this information (if the connection isn't already built). I was using an await**() method to well wait until the connection was build so I could relay the information.<br>
<br>Was this change intended to remove this as type of scenario? or was there another issue?<br><br>Bob (Buffone)<br><br><br>