mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
fix timeout issue, but can not reproduce with local built binaries
fix https://github.com/chrislusf/seaweedfs/issues/841
This commit is contained in:
parent
1d103e3ed5
commit
e84dcb0bfe
|
@ -25,8 +25,8 @@ func NewGrpcServer() *grpc.Server {
|
|||
}
|
||||
|
||||
func GrpcDial(address string, opts ...grpc.DialOption) (*grpc.ClientConn, error) {
|
||||
opts = append(opts, grpc.WithBlock())
|
||||
opts = append(opts, grpc.WithTimeout(time.Duration(5*time.Second)))
|
||||
// opts = append(opts, grpc.WithBlock())
|
||||
// opts = append(opts, grpc.WithTimeout(time.Duration(5*time.Second)))
|
||||
opts = append(opts, grpc.WithInsecure())
|
||||
opts = append(opts, grpc.WithKeepaliveParams(keepalive.ClientParameters{
|
||||
Time: 30 * time.Second, // client ping server if no activity for this long
|
||||
|
|
Loading…
Reference in a new issue