-
Notifications
You must be signed in to change notification settings - Fork 2.1k
vendor: github.com/moby/moby/api, moby/moby/client master #6576
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
Conversation
Codecov Report❌ Patch coverage is 📢 Thoughts on this report? Let us know! |
7361ea6 to
de926ca
Compare
cli/command/container/inspect.go
Outdated
| if err != nil { | ||
| return nil, nil, err | ||
| } | ||
| return &res.Container, nil, nil |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| return &res.Container, nil, nil | |
| return &res.Container, res.Raw, nil |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed, thank you!
de926ca to
8a67307
Compare
| var cs client.ConsoleSize | ||
| if execOptions.ConsoleSize != nil { | ||
| cs = client.ConsoleSize{ | ||
| Height: execOptions.ConsoleSize[0], | ||
| Width: execOptions.ConsoleSize[1], | ||
| } | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll have a look in a follow-up to see if we actually still need the locally defined execOptions struct / type, or if it has all the same fields as client.ExecAttachOptions (so possibly we could use that one direct).
Signed-off-by: Rob Murray <[email protected]> Signed-off-by: Sebastiaan van Stijn <[email protected]>
8a67307 to
4a60806
Compare
thaJeztah
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks!
- What I did
- How I did it
- How to verify it
- Human readable description for the release notes
- A picture of a cute animal (not mandatory but encouraged)