Include rejectUnauthorized in options

This commit is contained in:
Luke 2014-12-09 13:44:07 +00:00
parent 0d58557cac
commit 5d2d5ef024

View File

@ -15,6 +15,7 @@ function RpcClient(opts) {
this.protocol = (opts.protocol == 'http') ? http : https;
this.batchedCalls = null;
this.disableAgent = opts.disableAgent || false;
this.rejectUnauthorized = opts.rejectUnauthorized || false;
}
RpcClient.prototype.batch = function(batchCallback, resultCallback) {
@ -163,7 +164,7 @@ function rpc(request, callback) {
path: '/',
method: 'POST',
port: self.port,
rejectUnauthorized: false,
rejectUnauthorized: self.rejectUnauthorized,
agent: self.disableAgent ? false : undefined,
};
if (self.httpOptions) {