Commit 2898e000 by James Cammarata

Don't use the connection timeout for the select poll timeout

parent 713809b6
......@@ -444,7 +444,7 @@ class Connection(ConnectionBase):
state += 1
while True:
rfd, wfd, efd = select.select(rpipes, [], rpipes, timeout)
rfd, wfd, efd = select.select(rpipes, [], rpipes, 0.1)
# We pay attention to timeouts only while negotiating a prompt.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment