Skip to content

Commit

Permalink
Merge pull request #3880 from fatedier/dev
Browse files Browse the repository at this point in the history
fix login retry interval (#3879)
  • Loading branch information
fatedier committed Dec 21, 2023
2 parents 2b83436 + 2a9a7a0 commit d505ecb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/service.go
Expand Up @@ -332,7 +332,7 @@ func (svr *Service) loopLoginUntilSuccess(maxInterval time.Duration, firstLoginE
// try to reconnect to server until success
wait.BackoffUntil(loginFunc, wait.NewFastBackoffManager(
wait.FastBackoffOptions{
Duration: time.Millisecond,
Duration: time.Second,
Factor: 2,
Jitter: 0.1,
MaxDuration: maxInterval,
Expand Down
2 changes: 1 addition & 1 deletion pkg/util/version/version.go
Expand Up @@ -19,7 +19,7 @@ import (
"strings"
)

var version = "0.53.1"
var version = "0.53.2"

func Full() string {
return version
Expand Down

0 comments on commit d505ecb

Please sign in to comment.