mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
Prepare for release
This commit is contained in:
parent
09305a0909
commit
8d93f090b0
1 changed files with 4 additions and 4 deletions
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
Please see [sidekiq.org](https://sidekiq.org) for more details and how to buy.
|
Please see [sidekiq.org](https://sidekiq.org) for more details and how to buy.
|
||||||
|
|
||||||
HEAD
|
2.2.0
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
- Add new **leaky bucket** rate limiter [#4414]
|
- Add new **leaky bucket** rate limiter [#4414]
|
||||||
|
@ -18,10 +18,10 @@ leaker.within_limit do
|
||||||
end
|
end
|
||||||
```
|
```
|
||||||
See the Rate Limiting wiki page for more detail.
|
See the Rate Limiting wiki page for more detail.
|
||||||
- Rate limiters may now customize their retry count [#4725]
|
- Rate limiters may now customize their reschedule count [#4725]
|
||||||
To disable rate limit retries, use `retry: 0`.
|
To disable rate limit reschedules, use `reschedule: 0`.
|
||||||
```ruby
|
```ruby
|
||||||
Sidekiq::Limiter.concurrent("somename", 5, retry: 0)
|
Sidekiq::Limiter.concurrent("somename", 5, reschedule: 0)
|
||||||
```
|
```
|
||||||
- Allow filtering by name in the Rate Limiter UI [#4695]
|
- Allow filtering by name in the Rate Limiter UI [#4695]
|
||||||
- Add IT locale
|
- Add IT locale
|
||||||
|
|
Loading…
Add table
Reference in a new issue