Modify ↓
Opened 18 years ago
Closed 17 years ago
#1440 closed defect (fixed)
Closed tickets not regarded in calculating remaining hours
Reported by: | anonymous | Owned by: | Sam Bloomquist |
---|---|---|---|
Priority: | normal | Component: | ScrumBurndownPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 0.10 |
Description
The burndown_job.py script regards estimated hours in closed tickets as "hours remaining". Hours in closed tickets should not be included in the "hours remaining" - or one could never reach 0 hours remaining unless all tickets have at least the estimated time added (or more).
The fix is simple: Just add the following condition to the SQL statement in line 51:
" AND t.status != 'closed'"
Attachments (0)
Change History (2)
comment:1 Changed 18 years ago by
comment:2 Changed 17 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
This appears to be fixed in new burndown.py code that is triggered by ticket change events.
Note: See
TracTickets for help on using
tickets.
Yes, I can confirm this fix. I was looking for the same change.