[FIX] runbot: remove lazy from _read_group kwargs

This commit is contained in:
William Braeckman 2025-03-05 14:06:02 +01:00 committed by William Braeckman (wbr)
parent 564ca9af0a
commit fb576db980

View File

@ -55,7 +55,6 @@ class Host(models.Model):
[('host', 'in', self.mapped('name')), ('local_state', 'in', ('testing', 'running'))], [('host', 'in', self.mapped('name')), ('local_state', 'in', ('testing', 'running'))],
['host', 'local_state'], ['host', 'local_state'],
['id:count'], ['id:count'],
lazy=False,
) )
count_by_host_state = dict(((host, state), count) for host, state, count in groups) count_by_host_state = dict(((host, state), count) for host, state, count in groups)
for host in self: for host in self: