I am using fire-base queue in my node.js application. I want to understand, if there is any way available so that a queue can retry and process remaining tasks in case error occurred while execution of any task.
Asked
Active
Viewed 178 times
1 Answers
1
According to the documentation, you can specify the number of retry attempts using retries
(which defaults to zero):
retries
- The default spec doesn't retry failed tasks. When a task fails, if there are any remaining attempts, the queue will restart the task by setting the task's_state
to its spec'sstart_state
.

cartant
- 57,105
- 17
- 163
- 197