How to properly turn bugs into features đ
đˇď¸ tags: Project Management   Scrum  
Bugs that wonât be fixed should not stay in the backlog.
There are valid reasons not to fix a bug. For example, the bugâs impact might not be worth the effort of fixing it, or there might not be enough budget. Whatever the reason, sometimes the corresponding backlog item is left open to show that the issue is known but wonât be addressed. I disagree with this approach.
Fixing bugs is only important when the value of having the bug fixed exceeds the cost of the fixing it.
Joel Spolsky - Hard-assed Bug Fixinâ
Product backlogs are not meant to include all product information, only âwhat is needed to improve the productâ1. You donât always need to change the product to improve it. When you decide not to fix a bug, you create useful information: working on other things is more valuable for the customer. The bug item has fulfilled its purpose and no longer belongs in the backlog.

Caterpillar of Pseudosphinx tetrio in Guadeloupe, from Wikimedia, CC BY-SA 3.0 by KoS
You should add the bugâs behaviour to the product specification and link it to the relevant backlog item. The bug has become a feature and is now expected behaviour; add a comment explaining your reasoning and close the item.
Writing specs is like flossing: everybody agrees that itâs a good thing, but nobody does it.
Joel Spolsky - The Joel Test: 12 Steps to Better Code
The team might hesitate to update the specification like this, as it could seem like admitting the product has defects. I disagree; the specification ensures transparency. Customers and other stakeholders have the right to know what you expect from the product and why. To ease communication, you can call the bug behaviour a âknown limitationâ, but you should not hide it.

Caterpillar of Pseudosphinx tetrio in Guadeloupe, from Wikimedia, CC BY-SA 3.0 by KoS
Situations can change, and you might choose to fix the bug later. This could happen if the customerâs priorities shift, or if the system design is updated, making the fix simple. In these cases, create a new backlog item, link it to the old one, and explain the decision. Then, update the specification as needed. Donât leave a item open just because you hope to fix it someday; it will only be clutter.
Summary
When you decide not to fix a bug:
- Add a comment in the backlog item explaining why it wonât be fixed.
- Record the bug as expected behaviour in the specification and include a link to the item.
- Close the item.
If you later decide to fix the bug:
- Create a new backlog item.
- Link the new item to the old one.
- Add a comment explaining why the decision changed.
- Update the specification to match the new expected behaviour.
- Follow your usual process for fixing bugs.