Minimize open connections maintained by client

This commit is contained in:
Armon Dadgar 2013-12-19 15:10:29 -08:00
parent 6a1b36bd46
commit 9eb6ab8196
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ func NewClient(config *Config) (*Client, error) {
// Create server // Create server
c := &Client{ c := &Client{
config: config, config: config,
connPool: NewPool(5), connPool: NewPool(1),
eventCh: make(chan serf.Event, 256), eventCh: make(chan serf.Event, 256),
logger: logger, logger: logger,
shutdownCh: make(chan struct{}), shutdownCh: make(chan struct{}),