Fix timeout issue in ansible-connection (#24556) (#24579)

Fixes #24520 ansible-connection needs
to wait on timeout value of play-context
instead of ssh default timeout
(cherry picked from commit 5ec7f40196)
pull/24599/head
Ganesh Nalawade 9 years ago committed by GitHub
parent d94ac763b6
commit cc18296cc5

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

Loading…
Cancel
Save