1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00
This commit is contained in:
Mike Perham 2021-11-05 09:21:53 -07:00
parent c42d941e16
commit ed2307e4eb

View file

@ -32,8 +32,9 @@ Sidekiq::CurrentAttributes.persist(Myapp::Current) # Your AS::CurrentAttributes
MyJob.perform_bulk([[1], [2], [3]]) MyJob.perform_bulk([[1], [2], [3]])
``` ```
- Implement `queue_as`, `wait` and `wait_until` for ActiveJob compatibility [#5003] - Implement `queue_as`, `wait` and `wait_until` for ActiveJob compatibility [#5003]
- Retry Redis operation if we get an `UNBLOCKED` Redis error. [#4985] - Scheduler now uses Lua to reduce Redis load and network roundtrips [#5044]
- Run existing signal traps, if any, before running Sidekiq's trap. [#4991] - Retry Redis operation if we get an `UNBLOCKED` Redis error [#4985]
- Run existing signal traps, if any, before running Sidekiq's trap [#4991]
- Fix fetch bug when using weighted queues which caused Sidekiq to stop - Fix fetch bug when using weighted queues which caused Sidekiq to stop
processing queues randomly [#5031] processing queues randomly [#5031]