2
2
mirror of https://github.com/octoleo/restic.git synced 2025-01-03 07:12:28 +00:00
This commit is contained in:
George Armhold 2017-10-26 16:37:11 -04:00
parent 38c3061df7
commit bd0ada7842

View File

@ -71,7 +71,7 @@ func Open(cfg Config, rt http.RoundTripper) (restic.Backend, error) {
Path: cfg.Prefix,
},
listMaxItems: defaultListMaxItems,
sem: sem,
sem: sem,
}
return be, nil
@ -112,7 +112,7 @@ func Create(cfg Config, rt http.RoundTripper) (restic.Backend, error) {
Path: cfg.Prefix,
},
listMaxItems: defaultListMaxItems,
sem: sem,
sem: sem,
}
present, err := be.Test(context.TODO(), restic.Handle{Type: restic.ConfigFile})