igorkasyanchuk / rails_performance

Monitor performance of you Rails applications (self-hosted and free)
https://www.railsjazz.com/
MIT License
957 stars 54 forks source link

Sidekiq captures exceptions and prevents retries, error monitoring and more #17

Closed jules2689 closed 3 years ago

jules2689 commented 3 years ago

https://github.com/igorkasyanchuk/rails_performance/blob/master/lib/rails_performance/gems/sidekiq.rb#L22-L24

These lines do not re-raise the error. This causes Sidekiq to fail to invoke its error handlers and error monitoring (like sentry) fail.

Should be as simple as adding raise ex in there 😄