From eec6980f3e6194c6ed841fc84994f1734d31da74 Mon Sep 17 00:00:00 2001 From: Peter Sprygada Date: Sat, 26 Nov 2016 22:22:55 -0500 Subject: [PATCH] pass module timeout value to fetch_url in eapi connection (#18633) This change causes the eapi connection to honor the module timeout value when calling fetch_url --- lib/ansible/module_utils/eos.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/ansible/module_utils/eos.py b/lib/ansible/module_utils/eos.py index 5a59cef4e65..f0878436a5a 100644 --- a/lib/ansible/module_utils/eos.py +++ b/lib/ansible/module_utils/eos.py @@ -166,6 +166,7 @@ class Eapi(EosConfigMixin): self.url_args.params['url_username'] = params['username'] self.url_args.params['url_password'] = params['password'] self.url_args.params['validate_certs'] = params['validate_certs'] + self.url_args.params['timeout'] = params['timeout'] if params['use_ssl']: proto = 'https' @@ -205,10 +206,11 @@ class Eapi(EosConfigMixin): data = json.dumps(body) headers = {'Content-Type': 'application/json-rpc'} + timeout = self.url_args['timeout'] response, headers = fetch_url( self.url_args, self.url, data=data, headers=headers, - method='POST' + method='POST', timeout=timeout ) if headers['status'] != 200: