Skip to content

Commit

Permalink
Fix the initial daemon retry interval (#2036)
Browse files Browse the repository at this point in the history
  • Loading branch information
mlsmaycon authored May 23, 2024
1 parent 67e2185 commit 2e31531
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const (
maxRetryIntervalVar = "NB_CONN_MAX_RETRY_INTERVAL_TIME"
maxRetryTimeVar = "NB_CONN_MAX_RETRY_TIME_TIME"
retryMultiplierVar = "NB_CONN_RETRY_MULTIPLIER"
defaultInitialRetryTime = 14 * 24 * time.Hour
defaultInitialRetryTime = 30 * time.Minute
defaultMaxRetryInterval = 60 * time.Minute
defaultMaxRetryTime = 14 * 24 * time.Hour
defaultRetryMultiplier = 1.7
Expand Down

0 comments on commit 2e31531

Please sign in to comment.