We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Result: client can't received result
Root cause in ppqueue.cpp line 126
// Handle worker activity on backend if (items [0].revents & ZMQ_POLLIN) { zmsg msg (backend); std::string identity(msg.unwrap ());
msg.unwrap() will remove client's address. Therefore, message can't deliver to client I dumped data before and after call msg.unwrap()
msg.unwrap()
******* Before call unwrap() -------------------------------------- [004] 0001 [005] 008000002a [000] [001] 1 ******* After call unwrap() -------------------------------------- [000] [001] 1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Result: client can't received result
Root cause
in ppqueue.cpp line 126
msg.unwrap()
will remove client's address. Therefore, message can't deliver to clientI dumped data before and after call
msg.unwrap()
The text was updated successfully, but these errors were encountered: