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

Add note about arg checking

This commit is contained in:
Mike Perham 2021-12-07 14:06:49 -08:00
parent 41493f2623
commit bd4493fece

View file

@ -5,6 +5,10 @@
HEAD
---------
- Add **strict argument checking** [#5071]
Sidekiq will now log a warning if JSON-unsafe arguments are passed to `perform_async`.
Add `Sidekiq.strict_mode!(false)` to your initializer to disable this warning.
This warning will switch to an exception in Sidekiq 7.0.
- Note that Delayed Extensions will be removed in Sidekiq 7.0 [#5076]
- Add `perform_{inline,sync}` in Sidekiq::Job to run a job synchronously [#5061, hasan-ally]
```ruby