Skip to content

Commit

Permalink
Disables http agent to avoid bottlenecks in client side, parallel con…
Browse files Browse the repository at this point in the history
…nections per user are going to be controlled in server side.
  • Loading branch information
c4milo committed Mar 12, 2012
1 parent 97a9a8f commit fc6b940
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions participation/config.js
Expand Up @@ -5,7 +5,8 @@ var config = {
stream: {
host: 'api.dev.bugswarm.com',
port: 80,
path: '/stream'
path: '/stream',
agent: false
},
debug: true
},
Expand All @@ -16,7 +17,8 @@ var config = {
stream: {
host: 'api.int.bugswarm.com',
port: 80,
path: '/stream'
path: '/stream',
agent: false
},
debug: true
},
Expand All @@ -27,7 +29,8 @@ var config = {
stream: {
host: 'api.test.bugswarm.com',
port: 80,
path: '/stream'
path: '/stream',
agent: false
},
debug: true
},
Expand All @@ -38,7 +41,8 @@ var config = {
stream: {
host: 'api.bugswarm.com',
port: 80,
path: '/stream'
path: '/stream',
agent: false
},
debug: false
}
Expand Down

0 comments on commit fc6b940

Please sign in to comment.