[ARVADOS] updated: df75e59337899044a55767e10f69717b520c3ead
Git user
git at public.curoverse.com
Mon Jul 18 16:47:48 EDT 2016
Summary of changes:
sdk/go/arvados/client.go | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
via df75e59337899044a55767e10f69717b520c3ead (commit)
from 42490568db4cf4bc65fc436b41cfcffb8eadd8d1 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit df75e59337899044a55767e10f69717b520c3ead
Author: Lucas Di Pentima <lucas at curoverse.com>
Date: Mon Jul 18 17:47:38 2016 -0300
9438: Eliminated redundant casting
diff --git a/sdk/go/arvados/client.go b/sdk/go/arvados/client.go
index 50f8534..3d8fa55 100644
--- a/sdk/go/arvados/client.go
+++ b/sdk/go/arvados/client.go
@@ -41,11 +41,11 @@ var InsecureHTTPClient = &http.Client{
Transport: &http.Transport{
TLSClientConfig: &tls.Config{
InsecureSkipVerify: true}},
- Timeout: time.Duration(5 * time.Minute)}
+ Timeout: 5 * time.Minute}
// The default http.Client used by a Client otherwise.
var DefaultSecureClient = &http.Client{
- Timeout: time.Duration(5 * time.Minute)}
+ Timeout: 5 * time.Minute}
// NewClientFromEnv creates a new Client that uses the default HTTP
// client with the API endpoint and credentials given by the
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list