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

update notes

This commit is contained in:
Mike Perham 2017-01-02 12:29:58 -08:00
parent f464f36f15
commit 6ec52674c5

View file

@ -12,7 +12,7 @@ better with the new Rails 5.0 Executor.
etc. Because of its extensive responsibilities, the Executor can't be
integrated as Sidekiq middleware; the logging/retry logic had to be pulled out
too. Sidekiq 4.2 had a hack to make it work but this redesign provides
a cleaner integration.
a cleaner integration. [#3235]
* The Delayed Extensions `delay`, `delay_in` and `delay_until` APIs are
no longer available by default. The extensions allow you to marshal
@ -25,7 +25,12 @@ better with the new Rails 5.0 Executor.
```ruby
Sidekiq::Extensions.enable_delay!
```
The old `Sidekiq.remove_delay!` API has been removed as it is now the default.
The old `Sidekiq.remove_delay!` API has been removed as it is now the default. [#3299]
* Sidekiq's quiet signal is now `TSTP` (think of it as **T**hread
**ST**o**P**) instead of USR1 as USR1 is not available on JRuby.
USR1 will continue to be supported in Sidekiq 5.x for backwards
compatibility and will be removed in Sidekiq 6.x. [#3302]
## Upgrade