Fix timeout issue in ansible-connection (#24556)

Fixes #24520 ansible-connection needs
to wait on timeout value of play-context
instead of ssh default timeout
pull/24609/head
Ganesh Nalawade 7 years ago committed by GitHub
parent 19e7abb971
commit 5ec7f40196

@ -187,7 +187,7 @@ class Server():
if not data:
break
signal.alarm(C.DEFAULT_TIMEOUT)
signal.alarm(self.play_context.timeout)
rc = 255
try:

Loading…
Cancel
Save