Marcus Krejpowicz
Marcus Krejpowicz
Ok, after some deeper digging I found that the reason for the deadlocks are some active job calls with `perform_later`. If I change all these calls to `perform_now` the test...
For anyone who also runs in this problem, we have solved the issue by clearing the job queue after each test: ``` class ActiveSupport::TestCase teardown do clear_enqueued_jobs end end ```
The default one ... so no **sidekiq**
@rafaelfranca thanks for the hint, with the inline adapter it works!
@rafaelfranca which patch exactly do you mean? this one https://github.com/rails/rails/pull/46553 ?
is this patch included in 7.0.6?
@ansonhoyt hi, I was not able to apply the patch to the latest release version, because there were too many differences or so. we now just use the workaround with...