Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions pkg/snapshot/overlay.go
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,6 @@ func NewSnapshotter(bootConfig *BootConfig, opts ...Opt) (snapshots.Snapshotter,

// Stat returns the info for an active or committed snapshot by the key.
func (o *snapshotter) Stat(ctx context.Context, key string) (_ snapshots.Info, retErr error) {
log.G(ctx).Infof("Stat (key: %s)", key)
start := time.Now()
defer func() {
if retErr != nil {
Expand Down Expand Up @@ -338,7 +337,6 @@ func (o *snapshotter) Update(ctx context.Context, info snapshots.Info, fieldpath

// Usage returns the resources taken by the snapshot identified by key.
func (o *snapshotter) Usage(ctx context.Context, key string) (_ snapshots.Usage, retErr error) {
log.G(ctx).Infof("Usage (key: %s)", key)
start := time.Now()
defer func() {
if retErr != nil {
Expand Down
Loading