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
|
// Set up rate limiting/governor
|
||||||
let governor_conf = Arc::new(
|
let governor_conf = Arc::new(
|
||||||
GovernorConfigBuilder::default()
|
GovernorConfigBuilder::default()
|
||||||
.per_second(2)
|
.per_second(20)
|
||||||
.burst_size(5)
|
.burst_size(200)
|
||||||
.finish()
|
.finish()
|
||||||
.unwrap(),
|
.unwrap(),
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue