Fix timeout issue in ansible-connection (#24556)
Fixes #24520 ansible-connection needs to wait on timeout value of play-context instead of ssh default timeoutpull/4420/head
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…
Reference in New Issue