Merge pull request #33838 from lixiaobing1/masterRange

optimize for loop with rootfs.DiffIDs
This commit is contained in:
Sebastiaan van Stijn 2017-06-27 14:34:10 -07:00 коммит произвёл GitHub
Родитель 7843bfde36 80b2c326de
Коммит 74a5b14c80
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -147,7 +147,7 @@ func (p *v2Pusher) pushV2Tag(ctx context.Context, ref reference.NamedTagged, id
}
// Loop bounds condition is to avoid pushing the base layer on Windows.
for i := 0; i < len(rootfs.DiffIDs); i++ {
for range rootfs.DiffIDs {
descriptor := descriptorTemplate
descriptor.layer = l
descriptor.checkedDigests = make(map[digest.Digest]struct{})