From 67da0096837196f639c5a0decb8d9ef6aecc9d0c Mon Sep 17 00:00:00 2001 From: Mattia Verga Date: Nov 24 2020 08:46:50 +0000 Subject: Retrieve also bugs in POST state Some reviewer changes the bug status to POST when they grant fedora-review flag, so we must include that state to not loose visibility on those tickets. Signed-off-by: Mattia Verga --- diff --git a/review_stats/utils.py b/review_stats/utils.py index 8432298..522c277 100644 --- a/review_stats/utils.py +++ b/review_stats/utils.py @@ -63,7 +63,7 @@ def run_query(bz): 'product', 'creator', 'creator_id', 'status', 'resolution', 'component', 'blocks', 'depends_on', 'summary', 'whiteboard', 'flags', ], - 'bug_status': ['NEW', 'ASSIGNED', 'MODIFIED'], + 'bug_status': ['NEW', 'ASSIGNED', 'MODIFIED', 'POST'], 'product': ['Fedora', 'Fedora EPEL'], 'component': ['Package Review'], }