From 5cfa87df5d9a8179b1ea424875e47c0888fcbb32 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Sat, 20 Sep 2025 20:53:17 -0500 Subject: [PATCH] fix intermintent hang on remote server disconnect --- repertory/librepertory/src/comm/packet/packet_client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repertory/librepertory/src/comm/packet/packet_client.cpp b/repertory/librepertory/src/comm/packet/packet_client.cpp index e3ad26ac..3a565929 100644 --- a/repertory/librepertory/src/comm/packet/packet_client.cpp +++ b/repertory/librepertory/src/comm/packet/packet_client.cpp @@ -33,7 +33,7 @@ namespace { namespace net = boost::asio; -constexpr std::uint8_t max_attempts{3U}; +constexpr std::uint8_t max_attempts{5U}; struct non_blocking_guard final { net::ip::tcp::socket &sock;