From b019a44738dc31c6d0a6d5109a110d1c763412d2 Mon Sep 17 00:00:00 2001 From: Miro Hrončok Date: Sep 13 2021 09:45:44 +0000 Subject: Explicitly limit the number of bugzilla results on 1000, as the default is now 20 Signed-off-by: Miro Hrončok --- diff --git a/scripts/ftbfs-fti/follow-policy.py b/scripts/ftbfs-fti/follow-policy.py index bba30f4..4df65d3 100755 --- a/scripts/ftbfs-fti/follow-policy.py +++ b/scripts/ftbfs-fti/follow-policy.py @@ -291,6 +291,7 @@ def follow_policy(release): ], ) query_fti["blocks"] = ftibug.id + query_fti["limit"] = 1000 query_results = bz.query(query_fti) if len(query_results) == 1000: raise NotImplementedError('Bugzilla pagination not yet implemented')