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:
parent
a23a6f6d04
commit
1c15576907
1 changed files with 1 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue