1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-04-17 13:28:27 +00:00
This commit is contained in:
Paul Tobias 2026-03-11 10:37:50 +00:00 committed by GitHub
commit 0df4da2250
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -52,7 +52,10 @@ class NetmikoConnection(SSHConnection):
global_args = netmiko_device_globals.get(self.device.platform, {})
send_args = netmiko_device_send_args.get(self.device.platform, {})
send_args = {
"read_timeout": params.request_timeout,
**netmiko_device_send_args.get(self.device.platform, {}),
}
driver_kwargs = {
"host": host or self.device._target,