mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
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
This commit is contained in:
@@ -187,7 +187,7 @@ class Server():
|
||||
if not data:
|
||||
break
|
||||
|
||||
signal.alarm(C.DEFAULT_TIMEOUT)
|
||||
signal.alarm(self.play_context.timeout)
|
||||
|
||||
rc = 255
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user