1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge pull request #6507 from brdo/patch-1

Set keepalive to 5 seconds in paramiko_ssh.py
This commit is contained in:
James Cammarata 2014-06-09 23:44:06 -05:00
commit e5ef0eca03

View file

@ -186,6 +186,7 @@ class Connection(object):
bufsize = 4096
try:
chan = self.ssh.get_transport().open_session()
self.ssh.get_transport().set_keepalive(5)
except Exception, e:
msg = "Failed to open session"
if len(str(e)) > 0: