... to update github.com/opencontainers/image-spec to v1.1.0-rc3.

Signed-off-by: Miloslav Trmač <mitr@redhat.com>
This commit is contained in:
Miloslav Trmač
2023-05-05 20:07:59 +02:00
parent 94596801be
commit 44ed4cea0a
253 changed files with 24580 additions and 1841 deletions

View File

@@ -46,6 +46,7 @@ func (m heapManager) run() {
var sync bool
for req := range m {
next:
switch req.cmd {
case h_push:
data := req.data.(pushData)
@@ -78,7 +79,8 @@ func (m heapManager) run() {
select {
case data.iter <- b:
case <-data.drop:
break
close(data.iter)
break next
}
}
close(data.iter)
@@ -88,7 +90,8 @@ func (m heapManager) run() {
select {
case data.iter <- heap.Pop(&bHeap).(*Bar):
case <-data.drop:
break
close(data.iter)
break next
}
}
close(data.iter)