forked from TrueCloudLab/restic
Merge pull request #3872 from MichaelEischer/fuse-fix
mount: Only remember successful snapshot refreshes
This commit is contained in:
commit
7e96a5af62
1 changed files with 2 additions and 3 deletions
|
@ -299,9 +299,8 @@ func (d *SnapshotsDirStructure) updateSnapshots(ctx context.Context) error {
|
||||||
// sort snapshots ascending by time (default order is descending)
|
// sort snapshots ascending by time (default order is descending)
|
||||||
sort.Sort(sort.Reverse(snapshots))
|
sort.Sort(sort.Reverse(snapshots))
|
||||||
|
|
||||||
d.lastCheck = time.Now()
|
|
||||||
|
|
||||||
if d.snCount == len(snapshots) {
|
if d.snCount == len(snapshots) {
|
||||||
|
d.lastCheck = time.Now()
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -310,8 +309,8 @@ func (d *SnapshotsDirStructure) updateSnapshots(ctx context.Context) error {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
d.lastCheck = time.Now()
|
||||||
d.snCount = len(snapshots)
|
d.snCount = len(snapshots)
|
||||||
|
|
||||||
d.makeDirs(snapshots)
|
d.makeDirs(snapshots)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue