From df538870f73d0acac0e6212c8fa76f7cb2dbef50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20D=C3=B6tsch?= Date: Wed, 14 Jan 2026 09:11:15 +0100 Subject: [PATCH] graphs bug: all rows are multiplied by the number of selected objects like here /graphite/graph_table?object_id=123&object_id=123&object_id=125 all rows appear 3 times per host --- serveradmin/graphite/views.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/serveradmin/graphite/views.py b/serveradmin/graphite/views.py index 385d6d68..8d003058 100644 --- a/serveradmin/graphite/views.py +++ b/serveradmin/graphite/views.py @@ -68,8 +68,8 @@ def graph_table(request): assert isinstance(value, MultiAttr) if not any(collection.name == v for v in value): break # The server hasn't got this attribute value. - else: - collections.append(collection) + else: + collections.append(collection) # Prepare the graph descriptions descriptions = []