From 9cc109f97e7f6504aa3999284af56e69b6b05096 Mon Sep 17 00:00:00 2001 From: kstdl Date: Thu, 30 Jan 2025 10:24:37 +0100 Subject: [PATCH] chor: lower default threads count for rpc --- libraries/config/include/config/network.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/config/include/config/network.hpp b/libraries/config/include/config/network.hpp index bf87371a77..d1f841de9e 100644 --- a/libraries/config/include/config/network.hpp +++ b/libraries/config/include/config/network.hpp @@ -21,7 +21,7 @@ struct ConnectionConfig { boost::asio::ip::address address; // Number of threads dedicated to the rpc calls processing, default = 5 - uint16_t threads_num{5}; + uint16_t threads_num{2}; void validate() const; };