mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
leak fix
This commit is contained in:
parent
90e9b27800
commit
40f72c643e
1 changed files with 8 additions and 0 deletions
|
@ -3,6 +3,14 @@ Sidekiq Enterprise Changelog
|
|||
|
||||
Please see [http://sidekiq.org/](http://sidekiq.org/) for more details and how to buy.
|
||||
|
||||
HEAD
|
||||
-------------
|
||||
|
||||
- Fix leak in concurrent rate limiter, run this in Rails console to clean up existing data [#3323]
|
||||
```ruby
|
||||
expiry = 1.month.to_i; Sidekiq::Limiter.redis { |c| c.scan_each(match: "lmtr-cfree-*") { |key| c.expire(key, expiry) } }
|
||||
```
|
||||
|
||||
1.5.1
|
||||
-------------
|
||||
|
||||
|
|
Loading…
Reference in a new issue