1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

fix nxos_facts indefinite hang for text based output (#45845)

Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
This commit is contained in:
Trishna Guha 2018-09-19 19:37:44 +05:30 committed by GitHub
parent 2edf20d1ed
commit 1b0c4fde86
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -630,7 +630,7 @@ class Interfaces(FactsBase):
fact = dict() fact = dict()
fact['port'] = self.parse_lldp_port(item) fact['port'] = self.parse_lldp_port(item)
fact['sysname'] = self.parse_lldp_sysname(item) fact['sysname'] = self.parse_lldp_sysname(item)
facts[local_intf].append(facts) facts[local_intf].append(fact)
return facts return facts