Revert change to http until we fully deprecate msg/node priorities

Fix to close #582
This commit is contained in:
dceejay 2015-03-08 18:36:35 +00:00
parent 9c46feb22b
commit 4403a00651
1 changed files with 4 additions and 4 deletions

View File

@ -74,7 +74,7 @@ module.exports = function(RED) {
corsHandler = cors(RED.settings.httpNodeCors); corsHandler = cors(RED.settings.httpNodeCors);
RED.httpNode.options(this.url,corsHandler); RED.httpNode.options(this.url,corsHandler);
} }
var metricsHandler = function(req,res,next) { next(); } var metricsHandler = function(req,res,next) { next(); }
if (this.metric()) { if (this.metric()) {
@ -94,7 +94,7 @@ module.exports = function(RED) {
next(); next();
}; };
} }
if (this.method == "get") { if (this.method == "get") {
RED.httpNode.get(this.url,corsHandler,metricsHandler,this.callback,this.errorHandler); RED.httpNode.get(this.url,corsHandler,metricsHandler,this.callback,this.errorHandler);
} else if (this.method == "post") { } else if (this.method == "post") {
@ -155,7 +155,7 @@ module.exports = function(RED) {
} }
msg.res.set('content-length', len); msg.res.set('content-length', len);
} }
msg.res._msgId = msg._id; msg.res._msgId = msg._id;
msg.res.send(statusCode,msg.payload); msg.res.send(statusCode,msg.payload);
} }
@ -251,7 +251,7 @@ module.exports = function(RED) {
msg.statusCode = res.statusCode; msg.statusCode = res.statusCode;
msg.headers = res.headers; msg.headers = res.headers;
msg.payload = ""; msg.payload = "";
msg.url = url; // msg.url = url; // revert when fully deprecated
res.on('data',function(chunk) { res.on('data',function(chunk) {
msg.payload += chunk; msg.payload += chunk;
}); });