aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorAlexandru DAMIAN <alexandru.damian@intel.com>2015-03-13 17:32:34 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-03-21 00:00:01 +0000
commit61f209db436344efa29fbbd34faaf3ba085c3ce3 (patch)
tree1ce6c19be46d7f79302a8ee04ff2cfad417d6dac /lib
parent51c6e3edf074da6ebd8b347f13dc0f88b25c0111 (diff)
downloadbitbake-contrib-61f209db436344efa29fbbd34faaf3ba085c3ce3.tar.gz
toastergui: builds and projects outcome filter
This patch fixes the Outcome filter in the all builds and all projects pages in Build mode. [YOCTO #7450] Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Diffstat (limited to 'lib')
-rwxr-xr-xlib/toaster/toastergui/views.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/toaster/toastergui/views.py b/lib/toaster/toastergui/views.py
index fa34e5622..e87c9f289 100755
--- a/lib/toaster/toastergui/views.py
+++ b/lib/toaster/toastergui/views.py
@@ -1924,8 +1924,8 @@ if toastermain.settings.MANAGED:
'filter' : {'class' : 'outcome',
'label': 'Show:',
'options' : [
- ('Successful builds', 'state:' + str(BuildRequest.REQ_COMPLETED), queryset_all.filter(state=str(BuildRequest.REQ_COMPLETED)).count()), # this is the field search expression
- ('Failed builds', 'state:'+ str(BuildRequest.REQ_FAILED), queryset_all.filter(state=str(BuildRequest.REQ_FAILED)).count()),
+ ('Successful builds', 'build__outcome:' + str(Build.SUCCEEDED), queryset_all.filter(build__outcome = Build.SUCCEEDED).count()), # this is the field search expression
+ ('Failed builds', 'build__outcome:NOT'+ str(Build.SUCCEEDED), queryset_all.exclude(build__outcome = Build.SUCCEEDED).count()),
]
}
},