From e5c330bb1cf54c0670b1ef35ccafd0907a7a4ccf Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Wed, 23 Aug 2017 12:47:44 -0400 Subject: [PATCH] Be less verbose about non-viable data in periodic recheck If we have a device that has aged out of usable addresses, do not pester log about this incessantly. --- 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 9b820c95..caee6f9e 100644 --- a/confluent_server/confluent/discovery/core.py +++ b/confluent_server/confluent/discovery/core.py @@ -382,7 +382,7 @@ def _recheck_single_unknown(configmanager, mac): if not info: return if info['handler'] != pxeh and not info.get('addresses', None): - log.log({'info': 'Missing address information in ' + repr(info)}) + #log.log({'info': 'Missing address information in ' + repr(info)}) return handler = info['handler'].NodeHandler(info, configmanager) if handler.https_supported and not handler.https_cert: