diff --git a/runtime/protocol/http-client-engines/http-client-engine-okhttp/jvm/src/aws/smithy/kotlin/runtime/http/engine/okhttp/ConnectionIdleMonitor.kt b/runtime/protocol/http-client-engines/http-client-engine-okhttp/jvm/src/aws/smithy/kotlin/runtime/http/engine/okhttp/ConnectionIdleMonitor.kt index 0a1baa6fb..5d845c0c4 100644 --- a/runtime/protocol/http-client-engines/http-client-engine-okhttp/jvm/src/aws/smithy/kotlin/runtime/http/engine/okhttp/ConnectionIdleMonitor.kt +++ b/runtime/protocol/http-client-engines/http-client-engine-okhttp/jvm/src/aws/smithy/kotlin/runtime/http/engine/okhttp/ConnectionIdleMonitor.kt @@ -95,7 +95,6 @@ internal class ConnectionIdleMonitor(val pollInterval: Duration) : ConnectionLis source.readByte() // Blocking read; will take up to `pollInterval` time to complete } catch (_: SocketTimeoutException) { logger.trace { "Socket still alive for $conn" } - // Socket is still alive } catch (_: EOFException) { logger.trace { "Socket closed remotely for $conn" } socket.closeQuietly()