What are correct steps to setup sidekiq to work with airbrake on ruby on rails application.
already did:
Sidekiq.configure_server do |config| config.error_handlers << Proc.new { |ex,ctx_hash| Airbrake.notify_or_ignore(ex, ctx_hash) } end
What are the next steps to make it work?
require 'airbrake/sidekiq/error_handler'