-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mlm_client_send returns OK when no message was sent #212
Comments
+1 : according to recent bugs our team dealt with, this misbehavior was still in place, and bit us with some collateral damage. |
man zmq_msg_send
All messages are sent asynchronously, so the synchronous API call cannot know if the message has been sent over the network or not. Only if there were problems when creating it and queueing it up (or HWMs were full, etc) |
According to our devs (and sorry if I'm playing broken phone here):
So that's about all the summary I have to forward at this time :) |
Hi,
simple example:
I would expect mlm_client_send return -1 (as message was NOT actually send), but unfortunately it returned 0.
mlm_client_set_producer was intentionally omitted.
The text was updated successfully, but these errors were encountered: