summaryrefslogtreecommitdiff
path: root/vendor/github.com/moby/buildkit/cache/manager.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/moby/buildkit/cache/manager.go')
-rw-r--r--vendor/github.com/moby/buildkit/cache/manager.go9
1 files changed, 8 insertions, 1 deletions
diff --git a/vendor/github.com/moby/buildkit/cache/manager.go b/vendor/github.com/moby/buildkit/cache/manager.go
index 58e28b4743..983f7cd529 100644
--- a/vendor/github.com/moby/buildkit/cache/manager.go
+++ b/vendor/github.com/moby/buildkit/cache/manager.go
@@ -301,7 +301,14 @@ func (cm *cacheManager) GetByBlob(ctx context.Context, desc ocispecs.Descriptor,
cm.records[id] = rec
- return rec.ref(true, descHandlers, nil), nil
+ ref := rec.ref(true, descHandlers, nil)
+ if s := unlazySessionOf(opts...); s != nil {
+ if err := ref.unlazy(ctx, ref.descHandlers, ref.progress, s, true); err != nil {
+ return nil, err
+ }
+ }
+
+ return ref, nil
}
// init loads all snapshots from metadata state and tries to load the records