mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
fixes the timeout source in network_cli (#20302)
Timeout should be taken from the play context not the constants. this change updates network_cli to source timeout from the correct place
This commit is contained in:
parent
bd793b85bf
commit
efda0323be
1 changed files with 1 additions and 2 deletions
|
@ -24,7 +24,6 @@ import json
|
|||
import signal
|
||||
import datetime
|
||||
|
||||
from ansible import constants as C
|
||||
from ansible.errors import AnsibleConnectionFailure
|
||||
from ansible.module_utils.six.moves import StringIO
|
||||
from ansible.plugins import terminal_loader
|
||||
|
@ -247,7 +246,7 @@ class Connection(_Connection):
|
|||
if not signal.getsignal(signal.SIGALRM):
|
||||
display.debug('setting alarm handler in network_cli')
|
||||
signal.signal(signal.SIGALRM, self.alarm_handler)
|
||||
signal.alarm(C.DEFAULT_TIMEOUT)
|
||||
signal.alarm(self._play_context.timeout)
|
||||
out = self.send(obj)
|
||||
signal.alarm(0)
|
||||
return (0, out, '')
|
||||
|
|
Loading…
Reference in a new issue