Jelajahi Sumber

Merge pull request #44389 from tianon/debug-typo

Remove errant "runtime.GOARCH" from debug message
Sebastiaan van Stijn 2 tahun lalu
induk
melakukan
9899820a17
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      distribution/pull_v2.go

+ 1 - 1
distribution/pull_v2.go

@@ -830,7 +830,7 @@ func (p *puller) pullManifestList(ctx context.Context, ref reference.Named, mfst
 	if pp != nil {
 		platform = *pp
 	}
-	logrus.Debugf("%s resolved to a manifestList object with %d entries; looking for a %s/%s match", ref, len(mfstList.Manifests), platforms.Format(platform), runtime.GOARCH)
+	logrus.Debugf("%s resolved to a manifestList object with %d entries; looking for a %s match", ref, len(mfstList.Manifests), platforms.Format(platform))
 
 	manifestMatches := filterManifests(mfstList.Manifests, platform)