Skip to content

Commit

Permalink
increase defaults for data stream server timeouts (#1045)
Browse files Browse the repository at this point in the history
  • Loading branch information
hexoscott authored Aug 28, 2024
1 parent 656b349 commit 26ea489
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/utils/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -560,17 +560,17 @@ var (
DataStreamWriteTimeout = cli.DurationFlag{
Name: "zkevm.data-stream-writeTimeout",
Usage: "Define the TCP write timeout when sending data to a datastream client",
Value: 5 * time.Second,
Value: 20 * time.Second,
}
DataStreamInactivityTimeout = cli.DurationFlag{
Name: "zkevm.data-stream-inactivity-timeout",
Usage: "Define the inactivity timeout when interacting with a data stream server",
Value: 10 * time.Second,
Value: 10 * time.Minute,
}
DataStreamInactivityCheckInterval = cli.DurationFlag{
Name: "zkevm.data-stream-inactivity-check-interval",
Usage: "Define the inactivity check interval timeout when interacting with a data stream server",
Value: 2 * time.Second,
Value: 5 * time.Minute,
}
Limbo = cli.BoolFlag{
Name: "zkevm.limbo",
Expand Down

0 comments on commit 26ea489

Please sign in to comment.