From 6ec52674c5d6bd67c05fc1a3b17a026fe00dd832 Mon Sep 17 00:00:00 2001 From: Mike Perham Date: Mon, 2 Jan 2017 12:29:58 -0800 Subject: [PATCH] update notes --- 5.0-Upgrade.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/5.0-Upgrade.md b/5.0-Upgrade.md index 5d7706f2..75de61c5 100644 --- a/5.0-Upgrade.md +++ b/5.0-Upgrade.md @@ -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