loosen rate limiting
This commit is contained in:
parent
d15210e828
commit
4777a268b5
1 changed files with 2 additions and 2 deletions
|
@ -53,8 +53,8 @@ async fn main() -> Result<()> {
|
|||
// Set up rate limiting/governor
|
||||
let governor_conf = Arc::new(
|
||||
GovernorConfigBuilder::default()
|
||||
.per_second(2)
|
||||
.burst_size(5)
|
||||
.per_second(20)
|
||||
.burst_size(200)
|
||||
.finish()
|
||||
.unwrap(),
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue