From cf547aa403e532745ed80aed49b52b115afd2bcd Mon Sep 17 00:00:00 2001 From: Anthony Romano Date: Wed, 1 Mar 2017 14:37:40 -0800 Subject: [PATCH] clientv3: bump example requestTimeout for slow CI Fixes #7398 --- clientv3/example_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clientv3/example_test.go b/clientv3/example_test.go index 2c119cb2e08..4e9b5042d99 100644 --- a/clientv3/example_test.go +++ b/clientv3/example_test.go @@ -26,7 +26,7 @@ import ( var ( dialTimeout = 5 * time.Second - requestTimeout = 1 * time.Second + requestTimeout = 10 * time.Second endpoints = []string{"localhost:2379", "localhost:22379", "localhost:32379"} )