From f0514b75e8062be8d95de714cbda47a6e800524a Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 13 Mar 2025 10:13:46 +0000 Subject: [PATCH] fireinfo: Accept profiles with bogomips We should not really have anyone send this any more, but there seem to be many really outdated machines out there that are spamming my logs. Signed-off-by: Michael Tremer --- src/backend/fireinfo.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/backend/fireinfo.py b/src/backend/fireinfo.py index 702739bd..c2c603de 100644 --- a/src/backend/fireinfo.py +++ b/src/backend/fireinfo.py @@ -99,6 +99,9 @@ PROFILE_SCHEMA = { "type" : "string", "pattern" : r"^[a-z0-9\_]{,8}$", }, + "bogomips" : { + "type" : "number", + }, "count" : { "type" : "integer", }, -- 2.47.2