mirror of
https://git.meli.delivery/meli/meli
synced 2024-11-19 03:25:38 +00:00
XDGNotifications: increase rate limiting
3 notifications evenly spread per second did not make any sense. Increase it to 1000 and see if it's ok
This commit is contained in:
parent
6bdd9b07bb
commit
688a798fa2
@ -44,7 +44,7 @@ impl fmt::Display for XDGNotifications {
|
||||
impl XDGNotifications {
|
||||
pub fn new() -> Self {
|
||||
XDGNotifications {
|
||||
rate_limit: RateLimit::new(3, 1000),
|
||||
rate_limit: RateLimit::new(1000, 1000),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user