mirror of
https://git.yoctoproject.org/poky
synced 2026-04-21 21:32:12 +02:00
bitbake: toastergui: do not show in-progress builds in the table
This patch fixes the all-builds table as not to show in-progress builds. (Bitbake rev: 60fdc834d386dbace0a158123afd68df3ffbff90) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
25d4a35b03
commit
ab13498eb9
@@ -1892,7 +1892,7 @@ if True:
|
||||
# be able to display something. 'count' and 'page' are mandatory for all views
|
||||
# that use paginators.
|
||||
|
||||
queryset = Build.objects.filter(outcome__lte = Build.IN_PROGRESS)
|
||||
queryset = Build.objects.exclude(outcome = Build.IN_PROGRESS)
|
||||
|
||||
context, pagesize, orderby = _build_list_helper(request, queryset)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user