The default client poll interval is extremely long

Most operations complete much more quickly than 20s, and those that
do take longer are going to be fixed to make them take less time
(#353)
This commit is contained in:
Clayton Coleman 2014-08-18 13:40:35 -04:00
parent 82d1f8d4f6
commit 13c3efbc4c

View File

@ -96,7 +96,7 @@ func New(host string, auth *AuthInfo) *Client {
},
},
Sync: false,
PollPeriod: time.Second * 20,
PollPeriod: time.Second * 2,
Timeout: time.Second * 20,
}
}