1
0
mirror of https://github.com/docker/cli.git synced 2026-01-26 15:41:42 +03:00

Merge pull request #6644 from thaJeztah/connhelper_nowarn

cli/connhelper/commandcon: remove warn logs
This commit is contained in:
Sebastiaan van Stijn
2025-11-10 22:42:38 +01:00
committed by GitHub

View File

@@ -233,11 +233,9 @@ func (c *commandConn) Close() error {
defer c.closing.Store(false)
if err := c.CloseRead(); err != nil {
logrus.Warnf("commandConn.Close: CloseRead: %v", err)
return err
}
if err := c.CloseWrite(); err != nil {
logrus.Warnf("commandConn.Close: CloseWrite: %v", err)
return err
}