From 40f72c643ee16d44f87ca8ff56893de18fefcac5 Mon Sep 17 00:00:00 2001 From: Mike Perham Date: Thu, 19 Jan 2017 10:30:07 -0800 Subject: [PATCH] leak fix --- Ent-Changes.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Ent-Changes.md b/Ent-Changes.md index c86c4cae..e9f293c8 100644 --- a/Ent-Changes.md +++ b/Ent-Changes.md @@ -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 -------------