diff --git a/distribution/pull_v2_unix.go b/distribution/pull_v2_unix.go index dad9a85136..6d83253f52 100644 --- a/distribution/pull_v2_unix.go +++ b/distribution/pull_v2_unix.go @@ -45,17 +45,6 @@ func filterManifests(manifests []manifestlist.ManifestDescriptor, p specs.Platfo return m.Less(*p1, *p2) }) - // deprecated: backwards compatibility with older versions that didn't compare variant - if len(matches) == 0 && p.Architecture == "arm" { - p = platforms.Normalize(p) - for _, desc := range manifests { - if desc.Platform.OS == p.OS && desc.Platform.Architecture == p.Architecture { - matches = append(matches, desc) - logrus.Debugf("found deprecated partial match for %s with media type %s, digest %s", platforms.Format(p), desc.MediaType, desc.Digest.String()) - } - } - } - return matches }