mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-26 19:40:12 +00:00
Fix adequate check on inadequate IMMs
This commit is contained in:
parent
d6ecee955b
commit
c070148aed
@ -25,7 +25,7 @@ class NodeHandler(bmchandler.NodeHandler):
|
||||
def adequate(cls, info):
|
||||
# We can sometimes receive a partially initialized SLP packet
|
||||
# This is not adequate for being satisfied
|
||||
return bool(info['attributes'])
|
||||
return bool(info.get('attributes', {}))
|
||||
|
||||
def scan(self):
|
||||
slpattrs = self.info.get('attributes', {})
|
||||
|
Loading…
Reference in New Issue
Block a user