Redis – Sidekiq Pro calling brpoplpush throwing ArgumentError "wrong number of arguments (given 3, expected 2)"
This error makes no sense because brpoplpush in Ruby Redis 5.0.5 expects three arguments, and Sidekiq Pro 5.5.2 calls brpoplpush with three arguments on line 355 of lib/sidekiq/pro/super_fetch.rb: result = conn.brpoplpush(queue, working_queue, config[:fetch_timeout] || 1) Here is the error in…