Add StalledSubmmitter whiteboard status.

Support adding StalledSubmitter to the whiteboard to hide the package
from the queue; this makes it easy to drop stalled reviews out of the
queue and to query and mass-close them later.
This commit is contained in:
Jason Tibbitts 2010-11-13 11:09:26 -06:00
parent a23a6f6d04
commit 1c15576907

View file

@ -152,6 +152,7 @@ def run_query(bz):
if (bug.bug_status != 'CLOSED' and
(string.lower(bug.status_whiteboard).find('notready') >= 0
or string.lower(bug.status_whiteboard).find('buildfails') >= 0
or string.lower(bug.status_whiteboard).find('stalledsubmitter') >= 0
or LEGAL in bugdata[bug.bug_id]['blockedby']
or filter(opendep, bugdata[bug.bug_id]['depends']))):
bugdata[bug.bug_id]['hidden'] = 1