From 326ac36b5ee09fd46c511ce59dc99a7c74607f2a Mon Sep 17 00:00:00 2001 From: Xavier-Do Date: Wed, 17 Aug 2022 12:18:00 +0200 Subject: [PATCH] [FIX] runbot: display stats of failed and scheduled builds --- runbot/controllers/frontend.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/runbot/controllers/frontend.py b/runbot/controllers/frontend.py index 71b224c1..a9fcf053 100644 --- a/runbot/controllers/frontend.py +++ b/runbot/controllers/frontend.py @@ -507,9 +507,7 @@ class Runbot(Controller): return request.not_found() builds_domain = [ - ('build_type', '=', 'normal'), ('global_state', 'in', ('running', 'done')), - ('global_result', '=', 'ok'), ('slot_ids.batch_id.bundle_id', '=', bundle_id), ('params_id.trigger_id', '=', trigger.id), ]