Skip to content

Commit

Permalink
Raising request limit after adding throttling to ascending bootstrapper.
Browse files Browse the repository at this point in the history
Disabled node.aggressive_flooding test
  • Loading branch information
clemahieu committed Apr 4, 2023
1 parent 2abdeac commit a1a0a9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nano/core_test/node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3432,7 +3432,7 @@ TEST (node, bidirectional_tcp)

// Tests that local blocks are flooded to all principal representatives
// Sanitizers or running within valgrind use different timings and number of nodes
TEST (node, aggressive_flooding)
TEST (node, DISABLED_aggressive_flooding)
{
nano::test::system system;
nano::node_flags node_flags;
Expand Down
2 changes: 1 addition & 1 deletion nano/node/bootstrap/bootstrap_config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class bootstrap_ascending_config final
nano::error deserialize (nano::tomlconfig & toml);
nano::error serialize (nano::tomlconfig & toml) const;

std::size_t requests_limit{ 128 };
std::size_t requests_limit{ 1024 };
std::size_t database_requests_limit{ 1024 };
std::size_t pull_count{ nano::bootstrap_server::max_blocks };
nano::millis_t timeout{ 1000 * 3 };
Expand Down

0 comments on commit a1a0a9f

Please sign in to comment.