How to add deadline for items that are readded to the queue

I am using the re-framework, and set up the queue on the orchestrator to have auto 2 retries when a transaction item fails with a system/application exception. However, I want the item to be readded into the queue with a deadline date. How can I do this???

1 Like

Hey @happygal321,

You can’t add while the item is retried, because its auto retried and added by the queue.

One solution is to add a deadline when you first add the item to queue.

This may resolve the issue.

Thanks :slight_smile: