You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
I have a number of workers that return results of the general format:
I'm able to receive these results when calling a worker's
perform
method directly, asworker_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?
The text was updated successfully, but these errors were encountered: