Skip to content

Commit

Permalink
reenabled rate limiting
Browse files Browse the repository at this point in the history
  • Loading branch information
pompon0 committed Apr 5, 2024
1 parent d5c0082 commit 9cfe4f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions node/actors/network/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ impl Default for RpcConfig {
},
push_block_store_state_rate: limiter::Rate {
burst: 2,
refresh: time::Duration::ZERO, //milliseconds(500),
refresh: time::Duration::milliseconds(300),
},
get_block_rate: limiter::Rate {
burst: 10,
refresh: time::Duration::ZERO, //milliseconds(100),
refresh: time::Duration::milliseconds(100),
},
consensus_rate: limiter::Rate {
burst: 10,
Expand Down

0 comments on commit 9cfe4f4

Please sign in to comment.