-
Notifications
You must be signed in to change notification settings - Fork 439
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
msg->get_properties() not working in message_arrived #505
Comments
I was working on properties recently. Hopefully I didn’t add a bug. What version of the library are you using? |
thanks for all the amazing work! |
It seems to be working fine in the latest 'develop' branch, which I'm working on at the moment (for the next v1.5 release). I'll double check v1.3.1 to see what I can can find, but I don't see any modifications in the But just FYI, I've recently dropped a bunch of stuff in the code to make it easier to deal with properties on incoming messages and server responses. Like an iterator for |
I just installed v1.4.0 and I'm still getting the same error, I removed paho 1.3.1 and re-install paho. Do you have any estimate of when v1.5 could be released? Those are going to be great features. Thanks! |
Is there a bug in msg->get_properties() ?
Am I doing anything wrong?
I looked at the properties samples and I'm using it in the same way.
I tried different brokers thinking something in the broker could be wrong and I get the same results. I also installed the latest mosquitto broker in my laptop and used localhost as broker and it didn't work.
properties in paho cpp are not working when I use msg->get_properties() in message_arrived, but properties in message_arrive work in python.
I run both subscribers the python version and the cpp version at the same time subscribing to the same topic (the publisher is in c++)
** Subscriber python version output:**
Received message: Hello, MQTT! on topic ggg/test/topic
Message Properties:
[UserProperty : [('key1', 'value1'), ('key2', 'value2')]]
** Subscriber c++ output:**
Message arrived: ggg/test/topic -> Hello, MQTT!
No hay user property, porqueeee?? (This means "There is no user property, whyyyy?" )
Is props empty? '1'
props size: '0'
Below is my c++ subscriber message_arrived code
` void message_arrived(mqtt::const_message_ptr msg) override {
std::cout << "Message arrived: " << msg->get_topic() << " -> " << msg->to_string() << std::endl;
Please kindly help!
The text was updated successfully, but these errors were encountered: