mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-02 08:43:10 +00:00
fixed ETIME issue on FreeBSD 8 through 10, which broke all fact
gathering
This commit is contained in:
@@ -49,7 +49,7 @@ except ImportError:
|
||||
class TimeoutError(Exception):
|
||||
pass
|
||||
|
||||
def timeout(seconds=10, error_message=os.strerror(errno.ETIME)):
|
||||
def timeout(seconds=10, error_message="Timer expired"):
|
||||
def decorator(func):
|
||||
def _handle_timeout(signum, frame):
|
||||
raise TimeoutError(error_message)
|
||||
|
||||
Reference in New Issue
Block a user