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:
parent
5f079397be
commit
daee2f9c46
3 changed files with 11 additions and 1 deletions
|
@ -3,6 +3,7 @@
|
||||||
HEAD
|
HEAD
|
||||||
-----------
|
-----------
|
||||||
|
|
||||||
|
- Don't fill logfile in case of Redis downtime [#2860]
|
||||||
- Allow definition of a global retries_exhausted handler. [#2807]
|
- Allow definition of a global retries_exhausted handler. [#2807]
|
||||||
```ruby
|
```ruby
|
||||||
Sidekiq.configure_server do |config|
|
Sidekiq.configure_server do |config|
|
||||||
|
|
|
@ -3,6 +3,15 @@ Sidekiq Enterprise Changelog
|
||||||
|
|
||||||
Please see [http://sidekiq.org/](http://sidekiq.org/) for more details and how to buy.
|
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
|
1.2.0
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
module Sidekiq
|
module Sidekiq
|
||||||
VERSION = "4.1.0"
|
VERSION = "4.1.1"
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue