Hello! I have a limitation trying to handle failed jobs in the Oban.Pro.Workers.Chunk
worker. For one subset of jobs I must apply exponential backoff (the default one is enough) and for another one I need to snooze them, which is not possible since only error and cancel are supported.
https://getoban.pro/docs/pro/1.4.13/Oban.Pro.Workers.Chunk.html#module-chunk-results-and-error-handling
Is there any way to do that? It would be great to be able to do the next:
[error: {reason, jobs}, snooze: {reason, jobs}]
Oban Pro version 1.4.13, Oban version 2.18.0
Thanks!