change RPC agent default
This commit is contained in:
parent
0d3a80639a
commit
7c787edf85
|
@ -16,7 +16,7 @@ function ClassSpec(b) {
|
|||
this.pass = opts.pass || 'pass';
|
||||
this.protocol = (opts.protocol == 'http') ? http : https;
|
||||
this.batchedCalls = null;
|
||||
this.keepConnectionAlive = opts.keepConnectionAlive || false;
|
||||
this.disableAgent = opts.disableAgent || false;
|
||||
}
|
||||
|
||||
RpcClient.prototype.batch = function(batchCallback, resultCallback) {
|
||||
|
@ -147,7 +147,7 @@ function ClassSpec(b) {
|
|||
path: '/',
|
||||
method: 'POST',
|
||||
port: self.port,
|
||||
agent: self.keepConnectionAlive ? undefined : false,
|
||||
agent: self.disableAgent ? false : undefined,
|
||||
};
|
||||
if(self.httpOptions) {
|
||||
for(var k in self.httpOptions) {
|
||||
|
|
Loading…
Reference in New Issue