By Sidekiq 7.0 you are not allowed to pass in a hash that use symbols as keys. For example:
# before 7.0; will raise an error/exception
SomeWorker.perform_async({ id: 5, name: "Mark" })
# version 7.0 and up; ✅ ✅ ✅
SomeWorker.perform_async({ "id" => 5, "name" => "Mark" })
References: