* 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>
This commit is contained in:
parent
f56197df94
commit
15ac94f87c
2 changed files with 3 additions and 1 deletions
2
changelogs/fragments/nxos_linkagg_bugfix_2.5.6.yaml
Normal file
2
changelogs/fragments/nxos_linkagg_bugfix_2.5.6.yaml
Normal file
|
@ -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…
Reference in a new issue