Raspberry Pi - MQTT for IoT
A developer writes this code:
client.publish('sensor/temp', '25', qos=1)
client.publish('sensor/temp', '26', qos=1)
But only the first message is received by the subscriber. What could be the problem?