Fix display of warning about ignored filters

This commit is contained in:
Oliver Buschjost 2020-08-29 20:27:30 +02:00
parent d3fcfeba3a
commit a7b4c19abf
1 changed files with 1 additions and 1 deletions

View File

@ -22,10 +22,10 @@ func FindFilteredSnapshots(ctx context.Context, repo *repository.Repository, hos
// Process all snapshot IDs given as arguments.
for _, s := range snapshotIDs {
if s == "latest" {
usedFilter = true
id, err = restic.FindLatestSnapshot(ctx, repo, paths, tags, hosts)
if err != nil {
Warnf("Ignoring %q, no snapshot matched given filter (Paths:%v Tags:%v Hosts:%v)\n", s, paths, tags, hosts)
usedFilter = true
continue
}
} else {