Simple task retrying in the initial version? #47
Replies: 2 comments 2 replies
-
I think at a minimum you need to be able to specify which exceptions cause a specific task to retry. e.g. a database exception means "retry", a |
Beta Was this translation helpful? Give feedback.
-
It might be easier, at least initially, to encourage users to implement their own retry logic, and maybe provide some helpers.
|
Beta Was this translation helpful? Give feedback.
-
Following some discussions at Djangocon Europe last week, it was mentioned that the lack of retry functionality, however basic, may be a non-starter for some users.
Adding relative simple retry logic ("If it fails, immediately try again
n
times") should be relatively simple to implement and expose, without adding much maintenance burden. But, the trade-off towards something which is more useful to more people (and thus aid adoption) might be worthwhile.What do people think?
Beta Was this translation helpful? Give feedback.
All reactions