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
sub.Log(1, fmt.Appendf(nil, "copying %s from %s to %s\n", desc.Digest.String(), desc.Source.Ref.String(), t.String()))
212
-
returnr.Copy(ctx, desc.Source, t)
218
+
sub.Log(1, fmt.Appendf(nil, "copying %s from %s to %s\n", desc.Digest.String(), desc.Source.Ref.String(), repo))
219
+
returnr.Copy(ctx, &imagetools.Source{
220
+
Ref: desc.Source.Ref,
221
+
Desc: desc.Descriptor,
222
+
}, seed)
213
223
})
214
224
}
215
225
iferr:=eg2.Wait(); err!=nil {
216
226
returnerr
217
227
}
218
228
ctx=withMediaTypeKeyPrefix(ctx) // because of containerd bug this needs to be called separately for each ctx/goroutine pair to avoid concurrent map write
219
-
sub.Log(1, fmt.Appendf(nil, "pushing %s to %s\n", desc.Digest.String(), t.String()))
220
-
returnr.Push(ctx, t, desc, dt)
229
+
for_, t:=rangerepoTags {
230
+
sub.Log(1, fmt.Appendf(nil, "pushing %s to %s\n", desc.Digest.String(), t.String()))
0 commit comments