From d5c2bf81354cef559575d74bc4245c343656d668 Mon Sep 17 00:00:00 2001 From: Mike Perham Date: Wed, 8 Sep 2021 15:30:40 -0700 Subject: [PATCH] latest changes --- Changes.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Changes.md b/Changes.md index c2772f89..970a65fa 100644 --- a/Changes.md +++ b/Changes.md @@ -2,6 +2,17 @@ [Sidekiq Changes](https://github.com/mperham/sidekiq/blob/master/Changes.md) | [Sidekiq Pro Changes](https://github.com/mperham/sidekiq/blob/master/Pro-Changes.md) | [Sidekiq Enterprise Changes](https://github.com/mperham/sidekiq/blob/master/Ent-Changes.md) +HEAD +--------- + +- **FEATURE**: Support for serializing ActiveSupport::CurrentAttributes into each job. [#4982] +```ruby +# config/initializers/sidekiq.rb +require "sidekiq/middleware/current_attributes" +Sidekiq::CurrentAttributes.persist(Myapp::Current) # Your AS:CurrentAttributes singleton +``` +- Retry Redis operation if we get an `UNBLOCKED` Redis error. [#4985] + 6.2.2 ---------