Hi, I'm trying to setup Rollbar to report SolidQueue / ActiveJob errors. Here's my `ApplicationJob` class: ```ruby class ApplicationJob < ActiveJob::Base include Rollbar::ActiveJob retry_on StandardError, wait: :polynomially_longer, attempts: 5 end ``` Could it be that `retry_on` causes the Rollbar reporting to be ignored? I'm using SolidQueue in a single database setup. Thanks!