aboutsummaryrefslogtreecommitdiffstats
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:04:15 +0100
commit60fdc834d386dbace0a158123afd68df3ffbff90 (patch)
treec60c0832b6ff096b3f70b7e7c8f3cc8665155e2b
parent947d47f15048baa967f88e03d80014e88ce152aa (diff)
downloadbitbake-60fdc834d386dbace0a158123afd68df3ffbff90.tar.gz
toastergui: do not show in-progress builds in the table
This patch fixes the all-builds table as not to show in-progress builds. 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>
-rwxr-xr-xlib/toaster/toastergui/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/toaster/toastergui/views.py b/lib/toaster/toastergui/views.py
index 586a69c31..7ebcfc115 100755
--- a/lib/toaster/toastergui/views.py
+++ b/lib/toaster/toastergui/views.py
@@ -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)