mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
http3: implement FlushError for the response writer (#3951)
* implement FlushError interface for http3 response writer * move where to log flush error
This commit is contained in:
parent
418b866e32
commit
9e7fa4773a
1 changed files with 5 additions and 1 deletions
|
@ -120,8 +120,12 @@ func (w *responseWriter) Write(p []byte) (int, error) {
|
||||||
return w.bufferedStr.Write(p)
|
return w.bufferedStr.Write(p)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (w *responseWriter) FlushError() error {
|
||||||
|
return w.bufferedStr.Flush()
|
||||||
|
}
|
||||||
|
|
||||||
func (w *responseWriter) Flush() {
|
func (w *responseWriter) Flush() {
|
||||||
if err := w.bufferedStr.Flush(); err != nil {
|
if err := w.FlushError(); err != nil {
|
||||||
w.logger.Errorf("could not flush to stream: %s", err.Error())
|
w.logger.Errorf("could not flush to stream: %s", err.Error())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue