From 78feabb95013840d1fdcbbffdd767b4241894573 Mon Sep 17 00:00:00 2001 From: Andrew Rhoads Date: Tue, 22 Oct 2024 10:33:25 -0700 Subject: [PATCH] Fix default operation timeout --- lib/ClientConfigurationImpl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ClientConfigurationImpl.h b/lib/ClientConfigurationImpl.h index 08d4b6e4..0721c0a1 100644 --- a/lib/ClientConfigurationImpl.h +++ b/lib/ClientConfigurationImpl.h @@ -30,7 +30,7 @@ struct ClientConfigurationImpl { uint64_t memoryLimit{0ull}; int ioThreads{1}; int connectionsPerBroker{1}; - std::chrono::nanoseconds operationTimeout{30L * 1000 * 1000 * 1000}; + std::chrono::nanoseconds operationTimeout{30LL * 1000 * 1000 * 1000}; int messageListenerThreads{1}; int concurrentLookupRequest{50000}; int maxLookupRedirects{20};