HCBASE-93, lost connection err fixed
This commit is contained in:
@@ -76,5 +76,13 @@ function doHoBuDoorBellCall(options) {
|
||||
});
|
||||
}
|
||||
|
||||
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();
|
||||
}
|
||||
Reference in New Issue
Block a user