socialpandas / sidekiq_monitor

Advanced monitoring for Sidekiq
MIT License
230 stars 35 forks source link

Worker job status not reporting correctly #34

Open rossettistone opened 10 years ago

rossettistone commented 10 years ago

I have a number of workers that return results of the general format:

{
  success: false,
  message: "Some text about what happened."
}

I'm able to receive these results when calling a worker's perform method directly, as worker_message = MyWorker.perform(args).message, but I don't see the message or result showing up in the sidekiq_monitor Results column, although the workers continue to perform normally.

Any suggestions for debugging?