Merge pull request #18 from matiu/feature/keep-alive-optional

add option to RpcClient to enable keep-alive (false by default)
This commit is contained in:
Ryan X. Charles 2014-01-16 10:47:17 -08:00
commit a6cb632f26
1 changed files with 2 additions and 0 deletions

View File

@ -16,6 +16,7 @@ function ClassSpec(b) {
this.pass = opts.pass || 'pass';
this.protocol = (opts.protocol == 'http') ? http : https;
this.batchedCalls = null;
this.disableAgent = opts.disableAgent || false;
}
RpcClient.prototype.batch = function(batchCallback, resultCallback) {
@ -147,6 +148,7 @@ function ClassSpec(b) {
path: '/',
method: 'POST',
port: self.port,
agent: self.disableAgent ? false : undefined,
};
if(self.httpOptions) {
for(var k in self.httpOptions) {