Make sync false by default. Works around timeout/retry issues.

This commit is contained in:
Brendan Burns
2014-07-03 21:23:21 -07:00
parent 9a1053de7c
commit 2f5eeee1f6
2 changed files with 5 additions and 5 deletions

View File

@@ -46,7 +46,7 @@ func (c *Client) Verb(verb string) *Request {
verb: verb,
c: c,
path: "/api/v1beta1",
sync: true,
sync: false,
timeout: 20 * time.Second,
pollPeriod: 20 * time.Second,
}