diff --git a/src/node.js b/src/node.js index 45a4c569..5d7a680d 100644 --- a/src/node.js +++ b/src/node.js @@ -16,7 +16,7 @@ var oURL = URL.parse(url), req = HTTP.request({ hostname: oURL.hostname, - port: oURL.port, + port: oURL.port || 80, path: oURL.pathname, method: 'GET' }, function(response){ @@ -42,6 +42,8 @@ fabric.log(err.message); } }); + + req.end(); } /** @private */