From d60709dce17a7a97b9d175b65296da2bda5f08b0 Mon Sep 17 00:00:00 2001 From: Vitaliy Filippov Date: Mon, 20 Oct 2025 20:32:49 +0300 Subject: [PATCH] Init list_retry_time to 0 --- src/client/cluster_client.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/cluster_client.h b/src/client/cluster_client.h index ad148972..74fce18a 100644 --- a/src/client/cluster_client.h +++ b/src/client/cluster_client.h @@ -127,7 +127,7 @@ public: ring_consumer_t consumer; std::vector> on_ready_hooks; int list_retry_timeout_id = -1; - timespec list_retry_time; + timespec list_retry_time = {}; std::vector lists; std::multimap raw_ops; int continuing_ops = 0;