nxos_facts fix NameError (#48981)
Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
(cherry picked from commit 8796085569
)
This commit is contained in:
parent
d0416733a9
commit
029880a016
1 changed files with 9 additions and 3 deletions
|
@ -786,10 +786,16 @@ class Legacy(FactsBase):
|
||||||
|
|
||||||
def parse_structured_power_supply_info(self, data):
|
def parse_structured_power_supply_info(self, data):
|
||||||
if data.get('powersup').get('TABLE_psinfo_n3k'):
|
if data.get('powersup').get('TABLE_psinfo_n3k'):
|
||||||
data = data['powersup']['TABLE_psinfo_n3k']['ROW_psinfo_n3k']
|
fact = data['powersup']['TABLE_psinfo_n3k']['ROW_psinfo_n3k']
|
||||||
else:
|
else:
|
||||||
data = data['powersup']['TABLE_psinfo']['ROW_psinfo']
|
if isinstance(data['powersup']['TABLE_psinfo'], list):
|
||||||
objects = list(self.transform_iterable(data, self.POWERSUP_MAP))
|
fact = []
|
||||||
|
for i in data['powersup']['TABLE_psinfo']:
|
||||||
|
fact.append(i['ROW_psinfo'])
|
||||||
|
else:
|
||||||
|
fact = data['powersup']['TABLE_psinfo']['ROW_psinfo']
|
||||||
|
|
||||||
|
objects = list(self.transform_iterable(fact, self.POWERSUP_MAP))
|
||||||
return objects
|
return objects
|
||||||
|
|
||||||
def parse_hostname(self, data):
|
def parse_hostname(self, data):
|
||||||
|
|
Loading…
Reference in a new issue