2
0
mirror of https://github.com/xcat2/confluent.git synced 2025-01-09 04:56:12 +00:00

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.
This commit is contained in:
Jarrod Johnson 2017-08-23 12:47:44 -04:00
parent e1eafa46f9
commit e5c330bb1c

View File

@ -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: