forked from TrueCloudLab/restic
Add comment that keepBlobs is modified
This commit is contained in:
parent
866a52ad4e
commit
ae5302c7a8
1 changed files with 3 additions and 0 deletions
|
@ -19,6 +19,9 @@ const numRepackWorkers = 8
|
||||||
// these packs. Each pack is loaded and the blobs listed in keepBlobs is saved
|
// these packs. Each pack is loaded and the blobs listed in keepBlobs is saved
|
||||||
// into a new pack. Returned is the list of obsolete packs which can then
|
// into a new pack. Returned is the list of obsolete packs which can then
|
||||||
// be removed.
|
// be removed.
|
||||||
|
//
|
||||||
|
// The map keepBlobs is modified by Repack, it is used to keep track of which
|
||||||
|
// blobs have been processed.
|
||||||
func Repack(ctx context.Context, repo restic.Repository, packs restic.IDSet, keepBlobs restic.BlobSet, p *restic.Progress) (obsoletePacks restic.IDSet, err error) {
|
func Repack(ctx context.Context, repo restic.Repository, packs restic.IDSet, keepBlobs restic.BlobSet, p *restic.Progress) (obsoletePacks restic.IDSet, err error) {
|
||||||
if p != nil {
|
if p != nil {
|
||||||
p.Start()
|
p.Start()
|
||||||
|
|
Loading…
Reference in a new issue