Remove 'retined' property from node.status calls

This commit is contained in:
Nick O'Leary
2014-05-30 20:30:26 +01:00
parent 2cdaed1325
commit 70147d0b6b
6 changed files with 32 additions and 32 deletions

View File

@@ -137,7 +137,7 @@ Node.prototype.error = function(msg) {
/**
* status: { fill:"red|green", shape:"dot|ring", text:"blah" }
*/
Node.prototype.status = function(status,retain) {
comms.publish("status/"+this.id,status,retain);
Node.prototype.status = function(status) {
comms.publish("status/"+this.id,status,true);
}
module.exports = Node;