From dcb78f35938b2ce2ed7af77b3526d87c103074c3 Mon Sep 17 00:00:00 2001 From: msizov Date: Fri, 26 Apr 2024 18:48:12 +0700 Subject: [PATCH] dshackle: Fix websocket ping frames handling (#460) --- .../emeraldpay/dshackle/upstream/ethereum/WsConnectionImpl.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/WsConnectionImpl.kt b/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/WsConnectionImpl.kt index 29cdb67a..4343bf40 100644 --- a/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/WsConnectionImpl.kt +++ b/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/WsConnectionImpl.kt @@ -231,7 +231,7 @@ open class WsConnectionImpl( } .websocket( WebsocketClientSpec.builder() - .handlePing(true) + .handlePing(false) .compress(false) .maxFramePayloadLength(frameSize) .build(),