Skip to content

Commit

Permalink
Merge pull request #103 from zephvr/patch-1
Browse files Browse the repository at this point in the history
Fix: client lookup and browse stop working after 15 minutes
  • Loading branch information
grandcat authored Sep 29, 2021
2 parents 60fce55 + 4a36d4d commit a393c0e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions client.go
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,7 @@ func (c *client) periodicQuery(ctx context.Context, params *lookupParams) error
bo := backoff.NewExponentialBackOff()
bo.InitialInterval = 4 * time.Second
bo.MaxInterval = 60 * time.Second
bo.MaxElapsedTime = 0
bo.Reset()

var timer *time.Timer
Expand Down

0 comments on commit a393c0e

Please sign in to comment.