Merge pull request #3956 from MichaelEischer/fix-lock-refresh

lock: Use the correct duration to check for expired locks
This commit is contained in:
Michael Eischer 2022-10-07 22:58:10 +02:00 committed by GitHub
commit 83cb58b4f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ func monitorLockRefresh(ctx context.Context, lock *restic.Lock, lockInfo *lockCo
case <-refreshed:
lastRefresh = time.Now().Unix()
case <-timer.C:
if float64(time.Now().Unix()-lastRefresh) < refreshInterval.Seconds() {
if float64(time.Now().Unix()-lastRefresh) < refreshabilityTimeout.Seconds() {
// restart timer
timer.Reset(pollDuration)
continue