Add troubleshooting URL for persistent socket path related issue (#38542) (#38577)

* Add troubleshooting URL for persistent socket path related issue

socket path timeout related error messages are not displayed on the
console as the ansible-connection process does not have access to it.
Until this is fixed need to point to troubleshooting URL so that
users can take corrective actions.

* Fix CI issue

* Update changelog fragments
(cherry picked from commit 53d3e7e306)
pull/38659/head
Ganesh Nalawade 7 years ago committed by GitHub
parent 4b436847fc
commit 955ef020ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,2 @@
bugfixes:
- Add url to troubleshoot persistent socket path related issues https://github.com/ansible/ansible/pull/38542

@ -111,8 +111,10 @@ class Connection(object):
req = request_builder(name, *args, **kwargs)
reqid = req['id']
troubleshoot = 'http://docs.ansible.com/ansible/latest/network/user_guide/network_debug_troubleshooting.html#category-socket-path-issue'
if not os.path.exists(self.socket_path):
raise ConnectionError('socket_path does not exist or cannot be found')
raise ConnectionError('socket_path does not exist or cannot be found. Please check %s' % troubleshoot)
try:
data = json.dumps(req)
@ -120,7 +122,8 @@ class Connection(object):
response = json.loads(out)
except socket.error as e:
raise ConnectionError('unable to connect to socket', err=to_text(e, errors='surrogate_then_replace'), exception=traceback.format_exc())
raise ConnectionError('unable to connect to socket. Please check %s' % troubleshoot, err=to_text(e, errors='surrogate_then_replace'),
exception=traceback.format_exc())
if response['id'] != reqid:
raise ConnectionError('invalid json-rpc id received')

Loading…
Cancel
Save