mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
Don't use the connection timeout for the select poll timeout
This commit is contained in:
@@ -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.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user