Skip to content

Commit

Permalink
fix(grid-logger): allow greater timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
Darkness4 committed Feb 22, 2024
1 parent 0a25f65 commit a843ace
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grid-logger/server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ See the GNU General Public License for more details.`,
MaxConnectionAge: 60 * time.Minute, // If any connection is alive for more than given duration, send a GOAWAY.
MaxConnectionAgeGrace: 10 * time.Second, // Allow given duration for pending RPCs to complete before forcibly closing connections
Time: 10 * time.Second, // Ping the client if it is idle for given duration to ensure the connection is still active.
Timeout: 5 * time.Second, // Wait given duration for the ping ack before assuming the connection is dead.
Timeout: 20 * time.Second, // Wait given duration for the ping ack before assuming the connection is dead.
}),
}
if tls {
Expand Down

0 comments on commit a843ace

Please sign in to comment.