summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTim Savage <tim.savage@westpacdatabank.com.au>2016-12-23 09:31:46 +1100
committerTim Savage <tim.savage@westpacdatabank.com.au>2016-12-23 09:31:46 +1100
commitff5dd4823b3c7ed976a62842af6cefcf330a7496 (patch)
treeb43bd7afaea44971dfbe9fd8325e9baba1c67b9a
parent5e77640099cfa3d961e25f518338e974cf28f27d (diff)
Increased auth_timeout to 30 seconds
-rw-r--r--paramiko/transport.py2
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