Merge pull request #3524 from crazy-max/containerd-update

vendor: update containerd to efd86f2b0bc2 (release/2.2)
This commit is contained in:
Tõnis Tiigi
2025-11-17 16:02:42 +00:00
committed by GitHub
4 changed files with 6 additions and 4 deletions
+2
View File
@@ -22,6 +22,7 @@ import (
"errors"
"fmt"
"io"
"maps"
"strings"
"sync"
@@ -45,6 +46,7 @@ func WithMediaTypeKeyPrefix(ctx context.Context, mediaType, prefix string) conte
var values map[string]string
if v := ctx.Value(refKeyPrefix{}); v != nil {
values = v.(map[string]string)
values = maps.Clone(values)
} else {
values = make(map[string]string)
}