mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-26 12:21:26 -07: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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue