[FIX] ignore build without hosts for displayed stats

This commit is contained in:
Gery Debongnie 2014-08-19 11:32:34 +02:00
parent 16521bb575
commit 71c35940de

View File

@ -1063,6 +1063,7 @@ class RunbotController(http.Controller):
}) })
for result in build_obj.read_group(cr, uid, [], ['host'], ['host']): for result in build_obj.read_group(cr, uid, [], ['host'], ['host']):
if result['host']:
context['host_stats'].append({ context['host_stats'].append({
'host': result['host'], 'host': result['host'],
'testing': count([('state', '=', 'testing'), ('host', '=', result['host'])]), 'testing': count([('state', '=', 'testing'), ('host', '=', result['host'])]),