fix: benchmark read bytes
This commit is contained in:
parent
186a4cfdf3
commit
15ecc451f3
1 changed files with 1 additions and 1 deletions
|
@ -658,7 +658,7 @@ func benchmarkProxy(b *testing.B, proxy C.ProxyAdapter) {
|
|||
b.SetBytes(chunkSize)
|
||||
buf := make([]byte, chunkSize)
|
||||
for i := 0; i < b.N; i++ {
|
||||
conn.Read(buf)
|
||||
io.ReadFull(conn, buf)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue