aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchenwanli <chenwanli@sensetime.com>2019-01-10 19:42:31 +0800
committerchenwanli <chenwanli@sensetime.com>2019-01-10 20:21:08 +0800
commit39c745588111cebef0475f2453ee0715e0153c49 (patch)
tree3d000a41408651ef4d2b6331501c550387c4a5a7
parent0a3e83a36a067a282a3cecec06d7bb577f1822ba (diff)
downloadseaweedfs-39c745588111cebef0475f2453ee0715e0153c49.tar.xz
seaweedfs-39c745588111cebef0475f2453ee0715e0153c49.zip
Set http timeout to 5s
-rw-r--r--weed/operation/upload_content.go8
-rw-r--r--weed/util/http_util.go8
2 files changed, 12 insertions, 4 deletions
diff --git a/weed/operation/upload_content.go b/weed/operation/upload_content.go
index 030bf5889..8cf31e382 100644
--- a/weed/operation/upload_content.go
+++ b/weed/operation/upload_content.go
@@ -13,6 +13,7 @@ import (
"net/textproto"
"path/filepath"
"strings"
+ "time"
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/security"
@@ -30,9 +31,10 @@ var (
)
func init() {
- client = &http.Client{Transport: &http.Transport{
- MaxIdleConnsPerHost: 1024,
- }}
+ client = &http.Client{
+ Transport: &http.Transport{MaxIdleConnsPerHost: 1024},
+ Timeout: 5 * time.Second,
+ }
}
var fileNameEscaper = strings.NewReplacer("\\", "\\\\", "\"", "\\\"")
diff --git a/weed/util/http_util.go b/weed/util/http_util.go
index 77a7a5fa3..21e0a678d 100644
--- a/weed/util/http_util.go
+++ b/weed/util/http_util.go
@@ -11,6 +11,7 @@ import (
"net/http"
"net/url"
"strings"
+ "time"
"github.com/chrislusf/seaweedfs/weed/security"
)
@@ -24,7 +25,10 @@ func init() {
Transport = &http.Transport{
MaxIdleConnsPerHost: 1024,
}
- client = &http.Client{Transport: Transport}
+ client = &http.Client{
+ Transport: Transport,
+ Timeout: 5 * time.Second,
+ }
}
func PostBytes(url string, body []byte) ([]byte, error) {
@@ -63,6 +67,8 @@ func Post(url string, values url.Values) ([]byte, error) {
return b, nil
}
+// github.com/chrislusf/seaweedfs/unmaintained/repeated_vacuum/repeated_vacuum.go
+// may need increasing http.Client.Timeout
func Get(url string) ([]byte, error) {
r, err := client.Get(url)
if err != nil {