Skip to content

Commit

Permalink
cut default keepalive param loose
Browse files Browse the repository at this point in the history
  • Loading branch information
lichunzhu committed Feb 2, 2023
1 parent a608771 commit ace0813
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions br/pkg/lightning/config/const.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ const (

var (
DefaultGrpcKeepaliveParams = grpc.WithKeepaliveParams(keepalive.ClientParameters{
Time: 10 * time.Second,
Timeout: 20 * time.Second,
Time: 1 * time.Minute,
Timeout: 2 * time.Minute,
PermitWithoutStream: false,
})
)

0 comments on commit ace0813

Please sign in to comment.