When triaging bugs for a release, what criteria are typically used to determine whether the bug will be fixed for the release?
|
1
|
|
|
|
|
|
The cannonical article on this is My life as a Code Economist, by Eric Sink. It's really worth reading the article, but if you want it summed up for you in a checklist:
|
||
|
|
|
|
|
||
|
|
|
|
Quite frequently for us if the severity is low and the product is nearing release, it is better to save the fix for the next release. The let sleeping dogs lie principle. There comes a point where the code needs to be locked down. Code fixes require further regression testing and that takes time. Sad but true. |
||
|
|
|
|
There is a lot to be said for the "zero defect" mentality. Bugs of any kind should always go to the top of the stack, or eventually they will overwhelm you. Of course, in the real world, getting that sparkly new feature out there so you can win that big new client might be more important than fixing some slight annoyance. Time to market really does beat quality sometimes. |
||
|
|
|
|
Criticality, impact and money usually.
|
||
|
|
|
|
This is definitely a domain specific question. I write large trading apps for Hedge Funds, Prop Trading Desks, Mutual Funds etc. so:
I did talk to a 'Bug Triage Manager' the other day who works in a different field. He put it simply:
|
||
|
|
|
|
Things that affect severity I haven't seen yet in this post.
|
|||
|
|
|
|
In my experience, it's just:
|
||
|
|
|
|
I write RDBMS server software, so any bug that may cause data corruption is immediately a show-stopper. Also, any bug that can cause the database server to crash under relatively normal use would qualify, as would returning incorrect data from a query. It also has to depend on how destabilizing the fix is and how long it will take. |
||
|
|
|
As a rule we will patch any bug that crashes the system outside of the release cycle. Any other bug gets added to the product backlog and and is prioritized along with the new features. When determining what goes in the release we just take those tasks with the highest priority. This works well for us as we have a monthly release cycle. We use much the same system of prioritizing bugs as mentioned by others on this thread, with the added exception that a client can pay to raise the priority of a bug (or feature). |
||
|
|
|
|
Is it worth getting into technical debt by not fixing it, or doing a quick and dirty fix with the intention of fixing it properly later. |
||
|
|
|
|
There are lots of great answers already and of course circumstances vary depending on project/company/bug/time to release/dependencies/... I have however found the following two metrics a useful guideline.
The higher the bug is marked on both variables, the sooner it should be fixed. |
||
|
|
|
|
I agree with @Chris Upchurch, but I think a key factor is to have agreement from all parties before you get into crunchtime. That way, you can run down your checklist with a minimum of teeth-gnashing and chest-pounding. |
||
|
|
|
|
In terms of making the decisions, can't better the top answer based on severity, impact, cost etc. Need to be a little careful about when you apply these rules however. I have worked on too many projects where bugs were left to get out of control because they weren't anybodys responsibility. The best working rules I came up with were
THEN when you are considering a release.
|
||
|
|
