Is it a bug or a task when something doesn't work, yet, in development process

Posted by Patkos Csaba on Programmers See other posts from Programmers or by Patkos Csaba
Published on 2012-10-09T07:53:00Z Indexed on 2012/10/09 9:52 UTC
Read the original article Hit count: 300

We usually have this dilemma in our team. Sometimes, in order to implement a task or a story we find out that the system must be in a specific state. For example, a specific system configuration has to be made beforehand.

The task / story can be completed and it is working as specified on it with the proper configuration in place. Note that the configuration is not directly related with the task.

Next, we have to create a new ... ??? ... something for the process of generating that configuration file. This is where the problems appear. Some say that it is a bug others say it is a task or an extra feature.

So, where is the limit between bugs and tasks in the development phase? Should we even consider something a bug if all the tasks are working as stated in their definitions? Can a thing be considered a bug because one compares it to the current (unstable) state of the system?

Short example:

  • A feature requires configuring a communication service for a specific operation.
  • In the process of the implementation the team discovers that the service requires the hostnames of the pears to be resolvable to an IP address.
  • The team adds the hostnames to the DNS server (or hosts files) and continues implementing the required feature.
  • After the initial feature is working, a question is risen. Should the sysadmin configure the DNS or hosts file or should our application do it automatically?
    • An automatic solution is possible. So a decision is made to implement it.
  • ... here start the discussions ... is this a bug or an extra feature / task?

PS: I know that I mixed feature / task / story in the question. It is intentional. I am interested in separating bugs from the rest. Doesn't matter what the rest means in a particular case.

© Programmers or respective owner

Related posts about issue-tracking

Related posts about planning