From 89c710f8c3315b0ac1b72432999dcdc6f7305399 Mon Sep 17 00:00:00 2001 From: Markus Hilger Date: Thu, 2 Jul 2026 22:07:48 +0200 Subject: [PATCH] Fix key typo dropping verified flag in enclosure discovery --- confluent_server/confluent/discovery/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_server/confluent/discovery/core.py b/confluent_server/confluent/discovery/core.py index a8f022cc..0652bf30 100644 --- a/confluent_server/confluent/discovery/core.py +++ b/confluent_server/confluent/discovery/core.py @@ -1285,7 +1285,7 @@ async def eval_node(cfg, handler, info, nodename, manual=False): # might be ambiguous, need to match chassis-uuid as well.. match = await search_smms_by_cert(nodename, await handler.get_https_cert(), cfg) if match: - info['verfied'] = True + info['verified'] = True info['enclosure.bay'] = match[1] if match[2]: if not await discover_node(cfg, handler, info, match[2], manual):