Should we fix that bug? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T23:08:39Zhttp://stackoverflow.com/feeds/question/58006http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/58006/should-we-fix-that-bug8Should we fix that bug?Readonly2008-09-12T00:29:03Z2008-09-14T11:37:07Z
<p>When triaging bugs for a release, what criteria are typically used to determine whether the bug will be fixed for the release? </p>
http://stackoverflow.com/questions/58006/should-we-fix-that-bug/58009#580092Answer by Kristopher Johnson for Should we fix that bug?Kristopher Johnson2008-09-12T00:33:10Z2008-09-12T00:33:10Z<ul>
<li>Severity of effect on user</li>
<li>Frequency of appearance</li>
<li>Is workaround available?</li>
<li>Cost to fix</li>
<li>Time to fix</li>
<li>Time remaining before release deadline</li>
<li>Availability of resources who can make the fix</li>
</ul>
http://stackoverflow.com/questions/58006/should-we-fix-that-bug/58011#580110Answer by Blorgbeard for Should we fix that bug?Blorgbeard2008-09-12T00:33:33Z2008-09-12T00:33:33Z<p>In my experience, it's just:</p>
<ul>
<li>Severity of the bug</li>
<li>Amount of free dev time before the release.</li>
</ul>
http://stackoverflow.com/questions/58006/should-we-fix-that-bug/58016#580161Answer by 1800 INFORMATION for Should we fix that bug?1800 INFORMATION2008-09-12T00:34:38Z2008-09-12T00:34:38Z<p>Criticality, impact and money usually.</p>
<ol>
<li>Criticality: What happens? Does it corrupt data, bring down the system, that kind of thing.</li>
<li>Impact: How many people will be affected?</li>
<li>Money: Will someone pay us (or worse, withhold payment) if we (do not) fix it?</li>
</ol>
http://stackoverflow.com/questions/58006/should-we-fix-that-bug/58018#580180Answer by Graeme Perrow for Should we fix that bug?Graeme Perrow2008-09-12T00:36:19Z2008-09-12T00:36:19Z<p>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. </p>
<p>It also has to depend on how destabilizing the fix is and how long it will take.</p>
http://stackoverflow.com/questions/58006/should-we-fix-that-bug/58028#5802824Answer by Chris Upchurch for Should we fix that bug?Chris Upchurch2008-09-12T00:43:06Z2008-09-12T00:43:06Z<p>The cannonical article on this is <a href="http://www.ericsink.com/articles/Four_Questions.html" rel="nofollow">My life as a Code Economist</a>, by Eric Sink.</p>
<p>It's really worth reading the article, but if you want it summed up for you in a checklist:</p>
<ol>
<li>When this bug happens, how bad is the impact? - Severity</li>
<li>How often does this bug happen? - Frequency</li>
<li>How much effort would be required to fix this bug? - Cost</li>
<li>What is the risk of fixing this bug? - Risk</li>
</ol>
http://stackoverflow.com/questions/58006/should-we-fix-that-bug/58034#580342Answer by Jeff V for Should we fix that bug?Jeff V2008-09-12T00:44:56Z2008-09-12T00:44:56Z<p>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.</p>
<p>The let sleeping dogs lie principle.</p>
<p>There comes a point where the code needs to be locked down. Code fixes require further regression testing and that takes time.</p>
<p>Sad but true.</p>
http://stackoverflow.com/questions/58006/should-we-fix-that-bug/58041#580411Answer by Christian for Should we fix that bug?Christian2008-09-12T00:50:00Z2008-09-12T00:50:00Z<p>This is definitely a domain specific question. I write large trading apps for Hedge Funds, Prop Trading Desks, Mutual Funds etc. so:</p>
<ol>
<li>Things that violate compliance or cause other legal problems are very^4 bad</li>
<li>Things that can cause overtrading (you wanted to buy 100,000 shares of DTE but we got you 100,200) are very^3 bad</li>
<li>Things that prevents the client from trading when they want to are very^2 bad</li>
<li>Things that inconvenience the client are very bad</li>
</ol>
<p>I did talk to a 'Bug Triage Manager' the other day who works in a different field. He put it simply: </p>
<blockquote>
<blockquote>
<p>First I fix the crashing, then I fix the things that cause us to loose money, then I fix the things that makes us look bad, then I fix everything else.</p>
</blockquote>
</blockquote>
http://stackoverflow.com/questions/58006/should-we-fix-that-bug/58088#580881Answer by cwhite for Should we fix that bug?cwhite2008-09-12T01:16:09Z2008-09-12T01:31:55Z<p>Things that affect severity I haven't seen yet in this post.</p>
<ul>
<li>SLA - Does it have an impact on SLA?</li>
<li>Internal(maintenance) vs External Benefit - External benefit almost always gets higher priority</li>
<li>Visual vs Functional - functional generally gets higher priority</li>
<li>Who found it? (customer vs co-worker) - Customer gets higher priority</li>
</ul>
http://stackoverflow.com/questions/58006/should-we-fix-that-bug/58127#581270Answer by Nathan for Should we fix that bug?Nathan2008-09-12T01:42:08Z2008-09-12T01:42:08Z<p>As a rule we will patch any bug that crashes the system outside of the release cycle.</p>
<p>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.</p>
<p>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). </p>
http://stackoverflow.com/questions/58006/should-we-fix-that-bug/58268#582682Answer by Eric Z Beard for Should we fix that bug?Eric Z Beard2008-09-12T03:36:16Z2008-09-12T03:36:16Z<p>There is a lot to be said for the "zero defect" mentality. Bugs of any kind <em>should</em> always go to the top of the stack, or eventually they will overwhelm you.</p>
<p>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.</p>
http://stackoverflow.com/questions/58006/should-we-fix-that-bug/58577#585770Answer by Sam Hasler for Should we fix that bug?Sam Hasler2008-09-12T09:49:17Z2008-09-12T09:49:17Z<p>Is it worth getting into <a href="http://www.martinfowler.com/bliki/TechnicalDebt.html" rel="nofollow">technical debt</a> by not fixing it, or doing a quick and dirty fix with the intention of fixing it properly later.</p>
http://stackoverflow.com/questions/58006/should-we-fix-that-bug/58589#585890Answer by Matt Lacey for Should we fix that bug?Matt Lacey2008-09-12T10:03:37Z2008-09-12T10:03:37Z<p>There are lots of great answers already and of course circumstances vary depending on project/company/bug/time to release/dependencies/...</p>
<p>I have however found the following two metrics a useful guideline.</p>
<ul>
<li>How many users are affected?</li>
<li>How badly are they affected?</li>
</ul>
<p>The higher the bug is marked on both variables, the sooner it should be fixed.</p>
http://stackoverflow.com/questions/58006/should-we-fix-that-bug/59136#591360Answer by infinitetape for Should we fix that bug?infinitetape2008-09-12T14:30:43Z2008-09-12T14:30:43Z<p>I agree with @<a href="#58028" rel="nofollow">Chris Upchurch</a>, but I think a key factor is to have agreement from all parties <em>before you get into crunchtime</em>. That way, you can run down your checklist with a minimum of teeth-gnashing and chest-pounding.</p>
http://stackoverflow.com/questions/58006/should-we-fix-that-bug/61284#612840Answer by itj for Should we fix that bug?itj2008-09-14T11:37:07Z2008-09-14T11:37:07Z<p>In terms of making the decisions, can't better the top answer based on severity, impact, cost etc.</p>
<p>Need to be a little careful about <strong>when</strong> 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</p>
<ul>
<li>If you find a bug raise a bug report</li>
<li>If you can fix it, do so. ( report is raised as the existence of the bug may need reporting )</li>
<li>If the Team Lead understands the bug a priority must be assigned (or other measures used by the team). Add 'what this really means' information. It is important that the Team Lead has (some) control over the bug list.</li>
<li>Review bugs not fixed / prioritised at management level. Not understood bugs are a gaping risk and the powers that be should have the opportunity to understand the risk.</li>
<li>At all times, have a project wide view of what the top bugs are (this can be separate to priority e.g. a top 5 list)</li>
<li>Encourage programmers to fix bugs alongside development tasks</li>
</ul>
<p><strong>THEN</strong> when you are considering a release.</p>
<ul>
<li>branch the code and instigate a <strong>feature freeze</strong></li>
<li>identify the bugs you intend to fix (no need to order them :-) )</li>
<li>only add bugs to this list that are reproducible on the frozen code <strong>and</strong> agreed</li>
</ul>