1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #21468 from coolljt0725/remove_useless_log

Do not return error on hijacked connection for docker exec
This commit is contained in:
Tõnis Tiigi 2016-03-25 10:50:43 -07:00
commit e2221d1f37

View file

@ -112,7 +112,6 @@ func (s *containerRouter) postContainerExecStart(ctx context.Context, w http.Res
} }
stdout.Write([]byte(err.Error())) stdout.Write([]byte(err.Error()))
logrus.Errorf("Error running exec in container: %v\n", err) logrus.Errorf("Error running exec in container: %v\n", err)
return err
} }
return nil return nil
} }