Skip to content

Commit 3629344

Browse files
committed
Ensure specifying an empty platform is treated as default
The default platform had previously been provided using the empty string. This change ensures that the platforms field is always filled in correctly and empty string is properly interpreted. Signed-off-by: Derek McGowan <[email protected]>
1 parent 875b92c commit 3629344

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

client_opts.go

+4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ package containerd
1818

1919
import (
2020
"github.com/containerd/containerd/images"
21+
"github.com/containerd/containerd/platforms"
2122
"github.com/containerd/containerd/remotes"
2223
"google.golang.org/grpc"
2324
)
@@ -76,6 +77,9 @@ type RemoteOpt func(*Client, *RemoteContext) error
7677
// WithPlatform allows the caller to specify a platform to retrieve
7778
// content for
7879
func WithPlatform(platform string) RemoteOpt {
80+
if platform == "" {
81+
platform = platforms.Default()
82+
}
7983
return func(_ *Client, c *RemoteContext) error {
8084
for _, p := range c.Platforms {
8185
if p == platform {

0 commit comments

Comments
 (0)