mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-28 03:00:23 -07:00
fix nxos_linkagg issue (#41550)
* fix nxos_linkagg issue * fix shippable
This commit is contained in:
parent
674dd3b10d
commit
119e6d680b
1 changed files with 1 additions and 1 deletions
|
@ -327,7 +327,7 @@ def map_config_to_obj(module):
|
||||||
|
|
||||||
try:
|
try:
|
||||||
channels = output['TABLE_channel']['ROW_channel']
|
channels = output['TABLE_channel']['ROW_channel']
|
||||||
except KeyError:
|
except (TypeError, KeyError):
|
||||||
return objs
|
return objs
|
||||||
|
|
||||||
if channels:
|
if channels:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue