[#xx] client: drop keepalive options #30

Merged
fyrchik merged 1 commit from fyrchik/frostfs-api-go:fix-keepalive-parameters into support/v2.15 2023-05-17 06:36:52 +00:00

View file

@ -6,7 +6,6 @@ import (
"google.golang.org/grpc" "google.golang.org/grpc"
"google.golang.org/grpc/credentials/insecure" "google.golang.org/grpc/credentials/insecure"
"google.golang.org/grpc/keepalive"
) )
const ( const (
@ -30,9 +29,8 @@ type cfg struct {
} }
const ( const (
defaultDialTimeout = 5 * time.Second defaultDialTimeout = 5 * time.Second
defaultKeepAliveTimeout = 5 * time.Second defaultRWTimeout = 1 * time.Minute
defaultRWTimeout = 1 * time.Minute
) )
func (c *cfg) initDefault() { func (c *cfg) initDefault() {
@ -41,9 +39,6 @@ func (c *cfg) initDefault() {
c.grpcDialOpts = []grpc.DialOption{ c.grpcDialOpts = []grpc.DialOption{
grpc.WithBlock(), grpc.WithBlock(),
grpc.WithTransportCredentials(insecure.NewCredentials()), grpc.WithTransportCredentials(insecure.NewCredentials()),
grpc.WithKeepaliveParams(keepalive.ClientParameters{
Timeout: defaultKeepAliveTimeout,
}),
} }
} }