Skip to content

Commit

Permalink
Limit legacy bootstrap serving threads (#4668)
Browse files Browse the repository at this point in the history
  • Loading branch information
pwojcikdev committed Jul 16, 2024
1 parent 5983818 commit e877de1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nano/node/nodeconfig.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class node_config
unsigned bootstrap_connections{ 4 };
unsigned bootstrap_connections_max{ 64 };
unsigned bootstrap_initiator_threads{ 1 };
unsigned bootstrap_serving_threads{ std::max (2u, nano::hardware_concurrency () / 2) };
unsigned bootstrap_serving_threads{ 1 };
uint32_t bootstrap_frontier_request_count{ 1024 * 1024 };
nano::websocket::config websocket_config;
nano::diagnostics_config diagnostics_config;
Expand Down

0 comments on commit e877de1

Please sign in to comment.