fix nxos_linkagg issue (#41550) (#41620)

* fix nxos_linkagg issue (#41550)

* fix nxos_linkagg issue

* fix shippable

(cherry picked from commit 119e6d680b)

* changelog

Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
pull/37923/merge
Trishna Guha 6 years ago committed by Matt Davis
parent f56197df94
commit 15ac94f87c

@ -0,0 +1,2 @@
bugfixes:
- Fix nxos_linkagg (https://github.com/ansible/ansible/pull/41550).

@ -349,7 +349,7 @@ def map_config_to_obj(module):
try:
channels = output['TABLE_channel']['ROW_channel']
except KeyError:
except (TypeError, KeyError):
return objs
if channels:

Loading…
Cancel
Save