-
Notifications
You must be signed in to change notification settings - Fork 618
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
Fix pull image process output from stderr to stdout #3773
Fix pull image process output from stderr to stdout #3773
Conversation
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.
This seems to contaminate the stdout of nerdctl run
when it incurs pulling an image
Just tested. |
@yankay maybe we should have tests for that stuff? |
Let me investigate :-) |
27ffb55
to
049eed8
Compare
HI @apostasie @AkihiroSuda |
}, | ||
{ | ||
Description: "Run Container with image pull - output should be in stderr", | ||
Setup: func(data test.Data, helpers test.Helpers) { |
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.
That should be Cleanup
instead of Setup
(note: Cleanup
is called both before Setup
and after the test completion)
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.
Just a couple of nits on the test.
047dfc3
to
c5116fa
Compare
Signed-off-by: Kay Yan <kay.yan@daocloud.io>
c5116fa
to
3dbd24c
Compare
Thanks @apostasie |
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.
Thanks
Fix pull image process output by changing the output stream from stderr to stdout
fix: #3395
fix: #3772