From 7bdf7afb8078b2387d1a11ac28c2fc458730147a Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Mon, 14 Sep 2020 08:04:41 -0400 Subject: [PATCH] Fix another mistake in chained SMM 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 01554327..b136ca85 100644 --- a/confluent_server/confluent/discovery/core.py +++ b/confluent_server/confluent/discovery/core.py @@ -1021,7 +1021,7 @@ def eval_node(cfg, handler, info, nodename, manual=False): # The candidate nodename is the head of a chain, we must # validate the smm certificate by the switch macmap.get_node_fingerprints(nodename, cfg) - util.handler.cert_matches(fprint, handler.https_cert) + util.cert_matches(fprint, handler.https_cert) return if (info.get('maccount', False) and not handler.discoverable_by_switch(info['maccount'])):