HCBASE-93, lost connection err fixed

This commit is contained in:
2016-06-09 17:13:00 +02:00
parent 971495b393
commit 8a32eafad6
4 changed files with 42 additions and 30 deletions
+9 -1
View File
@@ -85,5 +85,13 @@ function doHoBuDoorBellCall() {
});
}
http.request(options, callback).end();
var req = http.request(options, function(res) {
//Log.inspect('Result', res);
});
req.on('error', function(err) {
Log.error(err);
});
req.end();
}