Ability to Soft Delete Stale Bugs from elastic-recheck

Add a resolved_at attribute in the query yaml files
that can be used to mark when  a bug has been
fixed or does not occur any more. This can help us
re-enable bugs quickly when we see them again.

Change-Id: I7af7ce9417eec5ff9ecc2487a920ff9d1286a714
This commit is contained in:
Davanum Srinivas
2013-12-10 13:00:15 -05:00
parent 0843b5917b
commit d14cde9dec
3 changed files with 32 additions and 6 deletions

View File

@@ -18,11 +18,14 @@ A set of utility methods to load queries for elastic recheck.
"""
import glob
import logging
import os.path
import yaml
LOG = logging.getLogger('recheckwatchbot')
def load(directory='queries'):
def load(directory='queries', skip_resolved=True):
"""Load queries from a set of yaml files in a directory."""
bugs = glob.glob("%s/*.yaml" % directory)
data = []
@@ -30,5 +33,9 @@ def load(directory='queries'):
bugnum = os.path.basename(fname).rstrip('.yaml')
query = yaml.load(open(fname).read())
query['bug'] = bugnum
data.append(query)
if skip_resolved and 'resolved_at' in query:
LOG.debug('Skipping Bug : %s as it was resolved at %s'
% (query['bug'], query['resolved_at']))
else:
data.append(query)
return data