I recently tried to get Sailfish running under Windows 10 and ran into a problem with the ZeroMQ.
Apparently the IPC protocol is unsupported under Windows and TCP should be used. The problem occurs at this line:
master_addr = 'ipc://{0}/sailfish-master-{1}_{2}'.format(
tempfile.gettempdir(), os.getpid(), subdomain.id)
I expect this is low priority but would it be possible to make this implementation platform agnostic somehow? I am not familiar enough ZMQ to make PR for this myself; when changing the line to the TCP protocol located at '127.0.0.1:5555' i got pickle error about thread.locks.
I recently tried to get Sailfish running under Windows 10 and ran into a problem with the ZeroMQ.
Apparently the IPC protocol is unsupported under Windows and TCP should be used. The problem occurs at this line:
I expect this is low priority but would it be possible to make this implementation platform agnostic somehow? I am not familiar enough ZMQ to make PR for this myself; when changing the line to the TCP protocol located at '127.0.0.1:5555' i got pickle error about thread.locks.