mirror of
https://github.com/octoleo/restic.git
synced 2024-11-25 22:27:35 +00:00
restic: Don't list snapshots if FindSnapshot gets full id
This commit is contained in:
parent
d8c00b9726
commit
246d3032ae
@ -73,16 +73,20 @@ func findLatestSnapshot(ctx context.Context, be Lister, loader LoaderUnpacked, h
|
||||
// FindSnapshot takes a string and tries to find a snapshot whose ID matches
|
||||
// the string as closely as possible.
|
||||
func FindSnapshot(ctx context.Context, be Lister, loader LoaderUnpacked, s string) (*Snapshot, error) {
|
||||
// no need to list snapshots if `s` is already a full id
|
||||
id, err := ParseID(s)
|
||||
if err != nil {
|
||||
// find snapshot id with prefix
|
||||
name, err := Find(ctx, be, SnapshotFile, s)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
id, err := ParseID(name)
|
||||
id, err = ParseID(name)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
}
|
||||
return LoadSnapshot(ctx, loader, id)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user