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 2022-05-06 13:55:22 -07:00
parent fdfb7a5211
commit 994a4fa216

View file

@ -6,13 +6,13 @@ HEAD
---------
- Add beta support for transaction-aware client [#5291]
Add this line to your initializer and any jobs pushed during a transaction
will only be pushed after the transaction commits. You will need to add the
Add this line to your initializer and any jobs created during a transaction
will only be pushed to Redis **after the transaction commits**. You will need to add the
`after_commit_everywhere` gem to your Gemfile.
```ruby
Sidekiq.transactional_push!
```
- Fix regression with middleware arguments
- Fix regression with middleware arguments [#5312]
6.4.2