From 1686cbb009218f3108652e1d18d4bc5eab61f74c Mon Sep 17 00:00:00 2001 From: Joe Gordon Date: Thu, 19 Sep 2013 15:57:39 -0700 Subject: [PATCH] Make "Won't Fix" a closed status in recheckwatch When checking if a bug is closed we go through all of its affecting project statuses, and if a status is Won't Fix the bug will stay on the recheckwatch list. But if a bug is marked as won't fix its safe to assume the root cause of the issue is fixed. Otherwise the bug will happen again and someone will set the status back to open. For example: https://bugs.launchpad.net/nova/+bug/1186867 Change-Id: Iaddc4990062d5a80e188f10c14e91625b7605165 --- modules/recheckwatch/files/recheckwatch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/recheckwatch/files/recheckwatch b/modules/recheckwatch/files/recheckwatch index 1fa7e5a112..ea945e166c 100755 --- a/modules/recheckwatch/files/recheckwatch +++ b/modules/recheckwatch/files/recheckwatch @@ -27,7 +27,7 @@ from launchpadlib.launchpad import Launchpad from launchpadlib.uris import LPNET_SERVICE_ROOT import daemon -CLOSED_STATUSES = ['Fix Released', 'Invalid', 'Fix Committed'] +CLOSED_STATUSES = ['Fix Released', 'Invalid', 'Fix Committed', 'Won\'t Fix'] try: import daemon.pidlockfile