Merge pull request #273 from hindessm/trivial-mqtt-var-cleanup

Trivial mqtt var cleanup
This commit is contained in:
Nick O'Leary 2014-07-16 22:10:28 +01:00
commit 17a83436b3
1 changed files with 1 additions and 2 deletions

View File

@ -77,7 +77,6 @@ module.exports = function(RED) {
this.topic = n.topic;
this.broker = n.broker;
this.brokerConfig = RED.nodes.getNode(this.broker);
var node = this;
if (this.brokerConfig) {
this.status({fill:"red",shape:"ring",text:"disconnected"});
this.client = connectionPool.get(this.brokerConfig.broker,this.brokerConfig.port,this.brokerConfig.clientid,this.brokerConfig.username,this.brokerConfig.password);
@ -117,7 +116,6 @@ module.exports = function(RED) {
this.broker = n.broker;
this.brokerConfig = RED.nodes.getNode(this.broker);
var node = this;
if (this.brokerConfig) {
this.status({fill:"red",shape:"ring",text:"disconnected"},true);
@ -130,6 +128,7 @@ module.exports = function(RED) {
this.client.publish(msg);
}
});
var node = this;
this.client.on("connectionlost",function() {
node.status({fill:"red",shape:"ring",text:"disconnected"});
});