notification/mqtt: ensure network communication and check error

This commit is contained in:
Jan-Piet Mens 2013-05-12 11:22:34 +02:00
parent a6c042a4f7
commit c70d6cd18f

View file

@ -119,6 +119,9 @@ def publish(module, topic, payload, server='localhost', port='1883', qos='0',
module.fail_json(msg="unable to connect to MQTT broker")
mqttc.publish(topic, payload, int(qos), retain)
rc = mqttc.loop()
if rc != 0:
module.fail_json(msg="unable to send to MQTT broker")
mqttc.disconnect()