summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorAlexandru DAMIAN <alexandru.damian@intel.com>2015-08-18 17:28:59 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-08-19 18:05:56 +0100
commitab13498eb9462075d0551abbf5cb196ca457df63 (patch)
tree38d543c137116fe851e7b987c7c741de7c4bab63 /bitbake
parent25d4a35b034820c536599e88dc057a5a04517b2a (diff)
downloadpoky-ab13498eb9462075d0551abbf5cb196ca457df63.tar.gz
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>
Diffstat (limited to 'bitbake')
-rwxr-xr-xbitbake/lib/toaster/toastergui/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/views.py b/bitbake/lib/toaster/toastergui/views.py
index 586a69c314..7ebcfc1150 100755
--- a/bitbake/lib/toaster/toastergui/views.py
+++ b/bitbake/lib/toaster/toastergui/views.py
@@ -1892,7 +1892,7 @@ if True:
1892 # be able to display something. 'count' and 'page' are mandatory for all views 1892 # be able to display something. 'count' and 'page' are mandatory for all views
1893 # that use paginators. 1893 # that use paginators.
1894 1894
1895 queryset = Build.objects.filter(outcome__lte = Build.IN_PROGRESS) 1895 queryset = Build.objects.exclude(outcome = Build.IN_PROGRESS)
1896 1896
1897 context, pagesize, orderby = _build_list_helper(request, queryset) 1897 context, pagesize, orderby = _build_list_helper(request, queryset)
1898 1898