-
-
Notifications
You must be signed in to change notification settings - Fork 522
Closed
Labels
Description
I just tried to setup raven-ruby following docs:
Raven.configure do |config|
config.async = ->(event) { SentryJob.perform_later(event.to_hash) }
endIt was silently failing to enqueue the job util I changed to:
Raven.configure do |config|
config.async = ->(event) { SentryJob.perform_later(event.to_hash.except(:request) }
endI tried both :inline and :sidekiq AJ backends, I think there's some serialization issue that is swallowed silently. I'm going to provide repro gists soon meanwhile I opening this issue now to share this workaround.