overlay: Remove unused method param

`getCleanupDirectories` didn't use the storage transactor.

Signed-off-by: Danny Canter <danny@dcantah.dev>
This commit is contained in:
Danny Canter 2022-11-18 03:04:32 -08:00
parent 344da9edb2
commit e4130b2a02

View File

@ -289,7 +289,7 @@ func (o *snapshotter) Remove(ctx context.Context, key string) (err error) {
if !o.asyncRemove { if !o.asyncRemove {
var removals []string var removals []string
removals, err = o.getCleanupDirectories(ctx, t) removals, err = o.getCleanupDirectories(ctx)
if err != nil { if err != nil {
return fmt.Errorf("unable to get directories for removal: %w", err) return fmt.Errorf("unable to get directories for removal: %w", err)
} }
@ -360,10 +360,10 @@ func (o *snapshotter) cleanupDirectories(ctx context.Context) ([]string, error)
} }
defer t.Rollback() defer t.Rollback()
return o.getCleanupDirectories(ctx, t) return o.getCleanupDirectories(ctx)
} }
func (o *snapshotter) getCleanupDirectories(ctx context.Context, t storage.Transactor) ([]string, error) { func (o *snapshotter) getCleanupDirectories(ctx context.Context) ([]string, error) {
ids, err := storage.IDMap(ctx) ids, err := storage.IDMap(ctx)
if err != nil { if err != nil {
return nil, err return nil, err
@ -386,7 +386,6 @@ func (o *snapshotter) getCleanupDirectories(ctx context.Context, t storage.Trans
if _, ok := ids[d]; ok { if _, ok := ids[d]; ok {
continue continue
} }
cleanup = append(cleanup, filepath.Join(snapshotDir, d)) cleanup = append(cleanup, filepath.Join(snapshotDir, d))
} }