make the buffered qlog writer used in interop flush before closing

This commit is contained in:
Marten Seemann 2020-03-19 12:58:56 +07:00
parent 2f2583beb0
commit 3e8c3cafc1
5 changed files with 57 additions and 21 deletions

View file

@ -62,13 +62,7 @@ func main() {
log.Fatal(err)
}
log.Printf("Creating qlog file %s.\n", filename)
return struct {
io.Writer
io.Closer
}{
bufio.NewWriter(f),
f,
}
return utils.NewBufferedWriteCloser(bufio.NewWriter(f), f)
}
}
roundTripper := &http3.RoundTripper{