mirror of
https://github.com/restic/restic.git
synced 2025-08-20 03:47:29 +00:00
lock: Use the correct duration to check for expired locks
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user