You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Per title, this is misleading since I would expect the date_done field to reflect when the task completes (or fails). This is not the case, and because the field is marked auto_now=True the record gets updated whenever I update the task's state for e.g. progress tracking.
This leads to my users complaining (rightly) that tasks are still in progress but show with a done date.
Can we get 'date_done' modified to accurately reflect the time a task completes?
The text was updated successfully, but these errors were encountered:
I'm seeing the same issue - date_done is assigned a value even when the task isn't yet .ready(), which seems at odds with what that field name implies.
Per title, this is misleading since I would expect the date_done field to reflect when the task completes (or fails). This is not the case, and because the field is marked
auto_now=True
the record gets updated whenever I update the task's state for e.g. progress tracking.This leads to my users complaining (rightly) that tasks are still in progress but show with a done date.
Can we get 'date_done' modified to accurately reflect the time a task completes?
The text was updated successfully, but these errors were encountered: