You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pkg/unpack/unpacker.go
+12-4Lines changed: 12 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -263,7 +263,8 @@ func (u *Unpacker) unpack(
263
263
}
264
264
265
265
ifunpack==nil {
266
-
returnfmt.Errorf("unpacker does not support platform %s for image %s", imgPlatform, config.Digest)
266
+
log.G(ctx).WithField("image", config.Digest).WithField("platform", platforms.Format(imgPlatform)).Debugf("unpacker does not support platform, only fetching layers")
267
+
returnu.fetch(ctx, h, layers, nil)
267
268
}
268
269
269
270
atomic.AddInt32(&u.unpacks, 1)
@@ -461,12 +462,18 @@ func (u *Unpacker) fetch(ctx context.Context, h images.Handler, layers []ocispec
0 commit comments