summaryrefslogtreecommitdiffstats
path: root/doc/developer-guide/Bug-report-Life-Cycle.md
diff options
context:
space:
mode:
authorHumble Devassy Chirammal <hchiramm@redhat.com>2015-09-24 14:53:52 +0530
committerHumble Devassy Chirammal <humble.devassy@gmail.com>2015-10-10 05:49:01 -0700
commita4f982be9b21323038704069a56fb2448369d6a0 (patch)
tree1daf99ef973b95b004938bb0e76b544907180b84 /doc/developer-guide/Bug-report-Life-Cycle.md
parentbad9539437ca1d69e470159277bbb6b5675cbae3 (diff)
Porting developer guide to source code repo from glusterdocs project
Change-Id: Ib8d9c668ebb05863918e6ec2b89908f206626f38 BUG: 1206539 Signed-off-by: Humble Devassy Chirammal <hchiramm@redhat.com> Reviewed-on: http://review.gluster.org/12227 Tested-by: NetBSD Build System <jenkins@build.gluster.org> Reviewed-by: Prashanth Pai <ppai@redhat.com> Reviewed-by: Humble Devassy Chirammal <humble.devassy@gmail.com> Tested-by: Humble Devassy Chirammal <humble.devassy@gmail.com> Tested-by: Raghavendra Talur <rtalur@redhat.com>
Diffstat (limited to 'doc/developer-guide/Bug-report-Life-Cycle.md')
-rw-r--r--doc/developer-guide/Bug-report-Life-Cycle.md57
1 files changed, 57 insertions, 0 deletions
diff --git a/doc/developer-guide/Bug-report-Life-Cycle.md b/doc/developer-guide/Bug-report-Life-Cycle.md
new file mode 100644
index 00000000000..3749bd6272a
--- /dev/null
+++ b/doc/developer-guide/Bug-report-Life-Cycle.md
@@ -0,0 +1,57 @@
+This page describes the life of a bug report.
+
+- When a bug is first reported, it is given the **NEW** status.
+- Once a developer has started, or is planning to work on a bug, the
+ status **ASSIGNED** is set. The "Assigned to" field should mention a
+ specific developer.
+- If an initial
+ [patch](https://en.wikipedia.org/wiki/Patch_(computing)) for a bug
+ has been put into the [Gerrit code review
+ tool](http://review.gluster.org), the status **POST** should be set
+ manually. The status **POST** should only be used when all patches
+ for a specific bug have been posted for review.
+- After a review of the patch, and passing any automated regression
+ tests, the patch will get merged by one of the maintainers. When the
+ patch has been merged into the git repository, a comment is added to
+ the bug. Only when all needed patches have been merged, the assigned
+ engineer will need to change the status to **MODIFIED**.
+- Once a package is available with fix for the bug, the status should
+ be moved to **ON\_QA**.
+ - The **Fixed in version** field should get the name/release of
+ the package that contains the fix. Packages for multiple
+ distributions will mostly get available within a few days after
+ the *make dist* tarball was created.
+ - This tells the bug reporter that a package is available with fix
+ for the bug and that they should test the package.
+ - The release maintainer need to do this change to bug status,
+ scripts are available (ask *ndevos*).
+- The status **VERIFIED** is set if a QA tester or the reporter
+ confirmed the fix after fix is merged and new build with the fix
+ resolves the issue.
+- In case the version does not fix the reported bug, the status should
+ be moved back to **ASSIGNED** with a clear note on what exactly
+ failed.
+- When a report has been solved it is given **CLOSED** status. This
+ can mean:
+ - **CLOSED/CURRENTRELEASE** when a code change that fixes the
+ reported problem has been merged in
+ [Gerrit](http://review.gluster.org).
+ - **CLOSED/WONTFIX** when the reported problem or suggestion is
+ valid, but any fix of the reported problem or implementation of
+ the suggestion would be barred from approval by the project's
+ Developers/Maintainers (or product managers, if existing).
+ - **CLOSED/WORKSFORME** when the problem can not be reproduced,
+ when missing information has not been provided, or when an
+ acceptable workaround exists to achieve a similar outcome as
+ requested.
+ - **CLOSED/CANTFIX** when the problem is not a bug, or when it is
+ a change that is outside the power of GlusterFS development. For
+ example, bugs proposing changes to third-party software can not
+ be fixed in the GlusterFS project itself.
+ - **CLOSED/DUPLICATE** when the problem has been reported before,
+ no matter if the previous report has been already resolved or
+ not.
+
+If a bug report was marked as *CLOSED* or *VERIFIED* and it turns out
+that this was incorrect, the bug can be changed to the status *ASSIGNED*
+or *NEW*. \ No newline at end of file