Commit 5809b813 authored by Chris McDonough's avatar Chris McDonough

Don't suppress MacOS-specific errors.

parent 46014ce7
......@@ -281,6 +281,11 @@ def send_action(action, sockname):
sock.close()
return response
except socket.error, msg:
if msg[1] == 'AF_UNIX path too long':
# MacOS has apparent small limits on the length of a UNIX
# domain socket filename, we want to make MacOS users aware
# of the actual problem
raise
return None
def test_suite():
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment