mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Update from napalm PR (#45743)
This commit is contained in:
parent
fa18d45eb3
commit
52c20bbd3f
1 changed files with 3 additions and 1 deletions
|
@ -360,8 +360,10 @@ class NetworkConnectionBase(ConnectionBase):
|
|||
initialize implementation plugin options
|
||||
'''
|
||||
for plugin in self._implementation_plugins:
|
||||
if hasattr(plugin, 'set_options'):
|
||||
try:
|
||||
plugin.set_options(task_keys=task_keys, var_options=var_options, direct=direct)
|
||||
except AttributeError:
|
||||
pass
|
||||
|
||||
def _update_connection_state(self):
|
||||
'''
|
||||
|
|
Loading…
Reference in a new issue