Skip to content

Commit

Permalink
Adjust channel limit
Browse files Browse the repository at this point in the history
  • Loading branch information
pwojcikdev committed Aug 11, 2024
1 parent bcf11c2 commit ce7c992
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nano/node/bootstrap/bootstrap_config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ class bootstrap_ascending_config final
bool enable_database_scan{ true };
bool enable_dependency_walker{ true };

// Maximum number of un-responded requests per channel
std::size_t channel_limit{ 64 };
// Maximum number of un-responded requests per channel, should be lower or equal to bootstrap server max queue size
std::size_t channel_limit{ 16 };
std::size_t database_rate_limit{ 256 };
std::size_t database_warmup_ratio{ 10 };
std::size_t max_pull_count{ nano::bootstrap_server::max_blocks };
Expand Down

0 comments on commit ce7c992

Please sign in to comment.