Skip to content

Commit

Permalink
Fixed an issue with max rule inactive timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
TrekkieCoder committed Jun 12, 2023
1 parent 0a75224 commit 0c52a4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion loxinet/rules.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const (
InitHostProbeTimeout = 15 // Initial probe timeout for end-point host
MaxHostProbeTime = 24 * 3600 // Max possible host health check duration
LbDefaultInactiveTimeout = 4 * 60 // Default inactive timeout for established sessions
LbMaxInactiveTimeout = 24 * 60 // Maximum inactive timeout for established sessions
LbMaxInactiveTimeout = 24 * 3600 // Maximum inactive timeout for established sessions
MaxEndPointCheckers = 4 // Maximum helpers to check endpoint health
EndPointCheckerDuration = 2 // Duration at which ep-helpers will run
MaxEndPointSweeps = 20 // Maximum end-point sweeps per round
Expand Down

0 comments on commit 0c52a4e

Please sign in to comment.