in tchannel-core/src/main/java/com/uber/tchannel/channels/Connection.java [97:104]
public void setState(ConnectionState state) {
synchronized (lock) {
this.state = state;
if (state == ConnectionState.IDENTIFIED || (state == ConnectionState.UNCONNECTED && this.lastError != null)) {
lock.notifyAll();
}
}
}