Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added new logging info on registry #129

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pkg/registry/registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -598,10 +598,11 @@
if len(platforms) == 0 {
platforms = append(platforms, Platform{Architecture: "amd64", OS: "linux"})
}
log.DefaultLogger.WithContext(ctx).WithField("platforms": platforms).Debug("Found image architecture")

Check failure on line 601 in pkg/registry/registry.go

View workflow job for this annotation

GitHub Actions / testGo

syntax error: unexpected : in argument list; possibly missing comma or )
tjamet marked this conversation as resolved.
Show resolved Hide resolved
return platforms, nil
}
if err != nil {
return nil, err
}
return nil, errors.New("Unable to find image architecture")
return nil, errors.New("unable to find image architecture")
}
Loading