Hi,
we are using ChunkWorker from oban pro.
We noticed that when job that was processed with ChunkWorker fails, in oban web when we select that job, we see args of one job, and error message is from another job.
Just to confirm, is this a current feature how ChunkWorker jobs are presented in oban web?
Thank you!
Hiya Karlo!
It’s down to the way errors are recorded on the job and not how Chunk
jobs are presented. When a Chunk
fails, from an exception, the error is written to all of the jobs in the chunk.
You could refine the error reporting with Oban.Pro.Workers.Chunk — Oban Pro v1.6.0-rc.4; if you program defensively and rescue exceptions.
1 Like