Skip to content

Commit

Permalink
Fix default operation timeout (#450)
Browse files Browse the repository at this point in the history
  • Loading branch information
arhoads authored Oct 31, 2024
1 parent 2491a5a commit 3efa80a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ClientConfigurationImpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -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};
Expand Down

0 comments on commit 3efa80a

Please sign in to comment.