mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-11-25 11:39:12 +08:00
revert this grpc related change
maybe related to https://github.com/chrislusf/seaweedfs/issues/1277
This commit is contained in:
parent
ebfab42a50
commit
978da73cdb
@ -40,7 +40,7 @@ func NewGrpcServer(opts ...grpc.ServerOption) *grpc.Server {
|
||||
}),
|
||||
grpc.KeepaliveEnforcementPolicy(keepalive.EnforcementPolicy{
|
||||
MinTime: 60 * time.Second, // min time a client should wait before sending a ping
|
||||
PermitWithoutStream: true,
|
||||
PermitWithoutStream: false,
|
||||
}),
|
||||
grpc.MaxRecvMsgSize(Max_Message_Size),
|
||||
grpc.MaxSendMsgSize(Max_Message_Size),
|
||||
@ -66,7 +66,7 @@ func GrpcDial(ctx context.Context, address string, opts ...grpc.DialOption) (*gr
|
||||
grpc.WithKeepaliveParams(keepalive.ClientParameters{
|
||||
Time: 30 * time.Second, // client ping server if no activity for this long
|
||||
Timeout: 20 * time.Second,
|
||||
PermitWithoutStream: true,
|
||||
PermitWithoutStream: false,
|
||||
}))
|
||||
for _, opt := range opts {
|
||||
if opt != nil {
|
||||
|
Loading…
Reference in New Issue
Block a user