mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix connect_timeout config varaible in netconf connection (#51055)
* Fetch connect_timeout value from get_options() instead of play_context
This commit is contained in:
parent
1b6228fa10
commit
f547c88ade
5 changed files with 5 additions and 5 deletions
|
@ -314,7 +314,7 @@ class Connection(NetworkConnectionBase):
|
|||
look_for_keys=self.get_option('look_for_keys'),
|
||||
device_params=device_params,
|
||||
allow_agent=self._play_context.allow_agent,
|
||||
timeout=self._play_context.timeout,
|
||||
timeout=self.get_option('persistent_connect_timeout'),
|
||||
ssh_config=ssh_config
|
||||
)
|
||||
except SSHUnknownHostError as exc:
|
||||
|
|
|
@ -107,7 +107,7 @@ class Netconf(NetconfBase):
|
|||
hostkey_verify=obj.get_option('host_key_checking'),
|
||||
look_for_keys=obj.get_option('look_for_keys'),
|
||||
allow_agent=obj._play_context.allow_agent,
|
||||
timeout=obj._play_context.timeout
|
||||
timeout=obj.get_option('persistent_connect_timeout')
|
||||
)
|
||||
except SSHUnknownHostError as exc:
|
||||
raise AnsibleConnectionFailure(to_native(exc))
|
||||
|
|
|
@ -109,7 +109,7 @@ class Netconf(NetconfBase):
|
|||
hostkey_verify=obj.get_option('host_key_checking'),
|
||||
look_for_keys=obj.get_option('look_for_keys'),
|
||||
allow_agent=obj._play_context.allow_agent,
|
||||
timeout=obj._play_context.timeout
|
||||
timeout=obj.get_option('persistent_connect_timeout')
|
||||
)
|
||||
except SSHUnknownHostError as exc:
|
||||
raise AnsibleConnectionFailure(to_native(exc))
|
||||
|
|
|
@ -117,7 +117,7 @@ class Netconf(NetconfBase):
|
|||
hostkey_verify=obj.get_option('host_key_checking'),
|
||||
look_for_keys=obj.get_option('look_for_keys'),
|
||||
allow_agent=obj._play_context.allow_agent,
|
||||
timeout=obj._play_context.timeout
|
||||
timeout=obj.get_option('persistent_connect_timeout')
|
||||
)
|
||||
except SSHUnknownHostError as exc:
|
||||
raise AnsibleConnectionFailure(to_native(exc))
|
||||
|
|
|
@ -86,7 +86,7 @@ class Netconf(NetconfBase):
|
|||
hostkey_verify=obj.get_option('host_key_checking'),
|
||||
look_for_keys=obj.get_option('look_for_keys'),
|
||||
allow_agent=obj._play_context.allow_agent,
|
||||
timeout=obj._play_context.timeout
|
||||
timeout=obj.get_option('persistent_connect_timeout')
|
||||
)
|
||||
except SSHUnknownHostError as exc:
|
||||
raise AnsibleConnectionFailure(to_native(exc))
|
||||
|
|
Loading…
Reference in a new issue