소스 검색

Merge pull request #7400 from heyitsanthony/fix-example-ctx

clientv3: bump example requestTimeout for slow CI
Anthony Romano 9 년 전
부모
커밋
db91277216
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      clientv3/example_test.go

+ 1 - 1
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"}
 )