From 13c3efbc4c30c01879ab9635c41d4c9eaaabdfeb Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Mon, 18 Aug 2014 13:40:35 -0400 Subject: [PATCH] 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) --- pkg/client/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/client/client.go b/pkg/client/client.go index e7c16761158..45f269f49e7 100644 --- a/pkg/client/client.go +++ b/pkg/client/client.go @@ -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, } }