Can't get ZeroMQ python bindings to receive messages over IPC

后端 未结 1 1041
我寻月下人不归
我寻月下人不归 2021-02-12 10:45

I\'m trying to achieve PUB/SUB over IPC. If I changed the code below so that the subscriber binds to \"tcp://*:5000\" and the publisher connects to \"tcp://localhost:5000\" it w

相关标签:
1条回答
  • 2021-02-12 11:33

    most likely cause is that you are running the publisher in a different directory. Try using absolute path for the pipe location: "ipc:///tmp/test.pipe". The way you are using it now makes it relative to current working directory.

    0 讨论(0)
提交回复
热议问题