Is there a way to disable automatic retry with ActiveJob and Sidekiq ?
I know that with Sidekiq only, we just have to put
sidekiq_options :retry => false
as mentioned here : https://github.com/mperham/sidekiq/wiki/Error-Handling#configuration
but it doesn't seem to work with ActiveJob and Sidekiq.
I also know the solution to entierly disable the retry as proposed here : https://stackoverflow.com/a/28216822/2431728
But it's not the behavior I need.