зеркало из https://github.com/microsoft/docker.git
pkg/broadcastwriter: reset after 4 KB w/o stream
Signed-off-by: Cristian Staretu <cristian.staretu@gmail.com>
This commit is contained in:
Родитель
d15d1674c3
Коммит
153f98bad5
|
@ -42,9 +42,12 @@ func (w *BroadcastWriter) Write(p []byte) (n int, err error) {
|
|||
delete(writers, sw)
|
||||
}
|
||||
}
|
||||
// exit if there is no more writers
|
||||
if len(w.streams) == 1 {
|
||||
w.buf.Reset()
|
||||
if w.buf.Len() >= 4096 {
|
||||
w.buf.Reset()
|
||||
} else {
|
||||
w.buf.Write(p)
|
||||
}
|
||||
w.Unlock()
|
||||
return len(p), nil
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче