1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00

ent 1.2.1

This commit is contained in:
Mike Perham 2016-03-02 12:59:23 -08:00
parent 5f079397be
commit daee2f9c46
3 changed files with 11 additions and 1 deletions

View file

@ -3,6 +3,7 @@
HEAD
-----------
- Don't fill logfile in case of Redis downtime [#2860]
- Allow definition of a global retries_exhausted handler. [#2807]
```ruby
Sidekiq.configure_server do |config|

View file

@ -3,6 +3,15 @@ Sidekiq Enterprise Changelog
Please see [http://sidekiq.org/](http://sidekiq.org/) for more details and how to buy.
1.2.1
-------------
- Multi-Process mode can now monitor the RSS memory of children and
restart any that grow too large. To limit children to 1GB each:
```
MAXMEM_KB=1048576 COUNT=2 bundle exec sidekiqswarm ...
```
1.2.0
-------------

View file

@ -1,3 +1,3 @@
module Sidekiq
VERSION = "4.1.0"
VERSION = "4.1.1"
end