diff options
author | Tim Savage <tim.savage@westpacdatabank.com.au> | 2016-12-23 09:31:46 +1100 |
---|---|---|
committer | Tim Savage <tim.savage@westpacdatabank.com.au> | 2016-12-23 09:31:46 +1100 |
commit | ff5dd4823b3c7ed976a62842af6cefcf330a7496 (patch) | |
tree | b43bd7afaea44971dfbe9fd8325e9baba1c67b9a | |
parent | 5e77640099cfa3d961e25f518338e974cf28f27d (diff) |
Increased auth_timeout to 30 seconds
-rw-r--r-- | paramiko/transport.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/paramiko/transport.py b/paramiko/transport.py index 22f81dd6..584418a6 100644 --- a/paramiko/transport.py +++ b/paramiko/transport.py @@ -383,7 +383,7 @@ class Transport (threading.Thread, ClosingContextManager): self.completion_event = None # user-defined event callbacks self.banner_timeout = 15 # how long (seconds) to wait for the SSH banner self.handshake_timeout = 15 # how long (seconds) to wait for the handshake to finish after SSH banner sent. - self.auth_timeout = 15 # how long (seconds) to wait for the auth response. + self.auth_timeout = 30 # how long (seconds) to wait for the auth response. # server mode: self.server_mode = False |