In my case I was wrapping HTTP calls in Hystrix which interrupted my thread when the call timed out, resulting in a SocketChannel.connect call sometimes failing with ClosedByInterruptException. That exception was supposed to be logged in the same thread but wasn't due to this bug. |