You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 8, 2022. It is now read-only.
The events do not work as expected when a client subscribe to events using FQDN starting with localhost or when there are multiple network interfaces or aliases.
The symptom is that events are not received and the client gets an exception once every 10 seconds due to the heartbeat timeout. The origin of the problem is that the server and client separately generate the event fliter name used by zmq. Because the client and server are on different hosts potentially or in different languages they resolve the hostname differently and therefore have different zmq filters. The solution is for the client to use the same zmq filter as they server.
A workaround is to use the real machine name instead of localhost.
This was reproduced in C++.
To be checked in Java too.