Report exceptions from connection thread.

This commit is contained in:
Steven Smith 2015-08-13 19:31:00 -07:00
parent a2e4898749
commit c68659008b

View file

@ -104,6 +104,7 @@ public class TcpClientSession extends TcpSession {
});
} catch(Throwable t) {
complete.set(true);
exceptionCaught(null, t);
}
}
}).start();