Skip to content

Commit

Permalink
request pool.maxSocket set to 100, closes #23
Browse files Browse the repository at this point in the history
  • Loading branch information
stianeikeland committed Apr 29, 2014
1 parent 5f81a98 commit 9c14f0a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ $ npm install node-etcd@0.6.1

## Changes

- 2.1.1 - Increase request pool.maxSockets to 100
- 2.1.0 - Use proper error objects instead of strings for errors.
- 2.0.10 - Fix error in documentation
- 2.0.9 - Added .post() alias of .create(). Added .compareAndDelete() (for etcd v0.3.0)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-etcd",
"version": "2.1.0",
"version": "2.1.1",
"description": "etcd library for node.js (etcd v2 api)",
"licenses": [
{
Expand Down
1 change: 1 addition & 0 deletions src/client.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ class Client
execute: (method, options, callback) =>
options = _.clone options
options.method = method
options.pool = maxSockets: 100

request options, (err, resp, body) =>
if @_wasRedirected resp
Expand Down

0 comments on commit 9c14f0a

Please sign in to comment.