vote up 1 vote down star

Triggered by a question on The Old New Thing, I would like to ask:

How do you set up your bug tracker priorities? More generally, what are your rules for working on them? How strict are you with "fix bugs first"? All of them?

I've marked this community wiki, and I'll post mine as a separate answer. (so you can vote them down if you think they suck :)

flag

5 Answers

vote up 0 vote down

I personally try to always work on bugs first, and then enhancements as a stable product is easier to implement enhancements in. Now it isn't a perfect world so that doesn't always happen, but that is my goal to reach.

link|flag
vote up 0 vote down

At our place:

We use "fix for " and priorities (in that order) to give bugs and feature requests a recommended order of solving.

Our priorities are:

  • Assign Priority - that's highest, and default.
  • Urgent! Urgent! - that's intended for "drop everything else" cases, the - slightly silly - name was chosen to make people not abuse it. Which as of now has worked well.
  • Showstopper - this one is blocking someone from doing his work efficiently, prevents demoing some feature, or similar.
  • Necessary - necessary for the next release it is assigned to. A feature we promised or is part of a customer specifc project milestone
  • Expected - something that should be in the next release, but can be dropped.
  • Fix if time - slightly tongue in cheeck, because "we do that when we have a lot of time" is the local equivalent of "don't hold your breath".

"Assign Priority" is highest and default for easy submittal. The least the developer responsible needs to do is assess severity, see if he can reproduce it, resolve duplicates etc.

Mostly, the developers are involved enough in their part of the products that they can figure out the order on their own, and he might fix a showstopepr before assessing a new case. Generally, I'd expect the respective manager to put these into a definite order in case of doubt - that's not the programmers job, but they are usually good at it.

We use FogBugz, btw.

link|flag
vote up 1 vote down

Our prioritization system is always in the context of the current iteration of the software and works as follows.

Priority 1 - All work stops except for this item, we release the fix as soon as it is tested. Priority 2 - The next release will not go out without this item resolved. Priority 3 - Really desired in this release, but if we run out of time we will push it. Priority 4 - We really don't expect to get to this in this release, but if you run out of tasks, work on it. Priority 5 - Don't work on it.

As for the "fix bugs first" admonition. We generally do that, but also apply common sense to it. Not all bugs are created equally. If the system badly formats dates badly when they are past the year 10,000 it is certainly not critical to push back features to get that fix in. If it miscalculates someone's bank balance, well that gets to the top of the list.

link|flag
vote up 1 vote down

I have no fault with the answers so far, but would like to add an observation concerning productivity. If a programmer is going into a subsystem to fix a bug, there is some time and effort spent getting reacquainted with the code. Therefore, fix every bug you can that appears to be coming from that subsystem. Use good judgment as to which subsystem to work on first, and when to move onto the next priority subsystem. This judgment is certainly influenced by what customer support thinks, and how others have classified bugs, but efficiency is also very important.

link|flag
vote up 2 vote down

I believe My life as a Code Economist by Eric Sink belongs here. Its essence is: prioritize bugs according to severity, frequency, cost and risk. Do not fix every bug, but rather have a list of the less severe ones and fix them as you go along.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.