From fb42ccf3e6c1e7e67a64ee57b30c2b48866916db Mon Sep 17 00:00:00 2001 From: Michel Alexandre Salim Date: Sat, 26 Mar 2022 12:01:28 -0700 Subject: [PATCH] Make bugz.fedoraproject.org display all open bugs for a package Currently it's configured to show NEW, ASSIGNED, and ON_QA bugs. However: - this misses pending Bodhi updates, which have bugs set to MODIFIED - approved but not built package reviews are often set to POST For simplicity, just show all open bugs with `__open__`. Signed-off-by: Michel Alexandre Salim --- roles/packages3/bugz.fp.o/files/bugz.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/packages3/bugz.fp.o/files/bugz.conf b/roles/packages3/bugz.fp.o/files/bugz.conf index 0f6494e941..d6820abfbf 100644 --- a/roles/packages3/bugz.fp.o/files/bugz.conf +++ b/roles/packages3/bugz.fp.o/files/bugz.conf @@ -1,5 +1,5 @@ RewriteEngine On RewriteMap lowercase int:tolower -RewriteRule ^/(.+) https://bugzilla.redhat.com/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=ON_QA&classification=Fedora&product=Fedora&product=Fedora\ EPEL&component=$1 [R,L] +RewriteRule ^/(.+) https://bugzilla.redhat.com/buglist.cgi?bug_status=__open__&classification=Fedora&product=Fedora&product=Fedora\ EPEL&component=$1 [R,L] RewriteRule ^/$ https://bugzilla.redhat.com/ [R,L]