retry icon indicating copy to clipboard operation
retry copied to clipboard

support catching exception on last try.

Open cailiang9 opened this issue 6 years ago • 2 comments

In many tasks that process a queue, e.g., when the source data is missing, the call func(item) will never be able to get job done. But we can simply ignore and continue on other items. So we need an option to not re-raise exception of the last try .

cailiang9 avatar Apr 06 '19 06:04 cailiang9

👍

umrashrf avatar May 17 '19 15:05 umrashrf

@cailiang9 you can also return if current retry is last one. This will allow you to resume the execution call.

andrew-synapse avatar Nov 09 '19 08:11 andrew-synapse