timeout http connections

possible fix for https://github.com/chrislusf/seaweedfs/issues/825
This commit is contained in:
Chris Lu 2019-01-17 23:38:33 -08:00
parent b881e11a16
commit 1d103e3ed5

View file

@ -42,7 +42,7 @@ func NewRaftServer(r *mux.Router, peers []string, httpAddr string, dataDir strin
raft.RegisterCommand(&topology.MaxVolumeIdCommand{})
var err error
transporter := raft.NewHTTPTransporter("/cluster", 0)
transporter := raft.NewHTTPTransporter("/cluster", time.Second)
transporter.Transport.MaxIdleConnsPerHost = 1024
glog.V(0).Infof("Starting RaftServer with %v", httpAddr)