s3: don't remove the bucket on Delete()

This commit is contained in:
Alexander Neumann 2015-12-19 13:23:05 +01:00
parent 55f10eb1c1
commit 248f991ad4
1 changed files with 2 additions and 7 deletions

View File

@ -240,7 +240,7 @@ func (be *S3Backend) removeKeys(t backend.Type) error {
return nil
}
// Delete removes all restic keys and the bucket.
// Delete removes all restic keys in the bucket. It will not remove the bucket itself.
func (be *S3Backend) Delete() error {
alltypes := []backend.Type{
backend.Data,
@ -256,12 +256,7 @@ func (be *S3Backend) Delete() error {
}
}
err := be.Remove(backend.Config, "")
if err != nil {
return err
}
return be.s3api.RemoveBucket(be.bucketname)
return be.Remove(backend.Config, "")
}
// Close does nothing