From a6117d7d2c75c3a0d0dfb0e435863786bd9ccf6f Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Fri, 25 Jun 2021 08:03:36 +0200 Subject: [PATCH] queue: fix missing build status for updates packages we need to look at all srcinfos now so we get a complete list of pending build types. They get used to filter the build status now, so we need all of them. --- app/web.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/web.py b/app/web.py index cd85116..7968e09 100644 --- a/app/web.py +++ b/app/web.py @@ -425,7 +425,6 @@ async def queue(request: Request, response: Response, repo: str = "") -> Respons srcinfo_repos.setdefault(srcinfo.pkgbase, set()).add(srcinfo.repo) repo_list = srcinfo_repos[srcinfo.pkgbase] if not repo_filter else set([repo_filter]) updates_grouped[srcinfo.pkgbase] = (srcinfo, s, p, get_build_status(srcinfo, repo_list)) - break # new packages available = {}