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:
WeidiDeng 2023-07-13 11:40:53 +08:00 committed by GitHub
parent 418b866e32
commit 9e7fa4773a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -120,8 +120,12 @@ func (w *responseWriter) Write(p []byte) (int, error) {
return w.bufferedStr.Write(p)
}
func (w *responseWriter) FlushError() error {
return w.bufferedStr.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())
}
}