Small optimisation
This commit is contained in:
parent
3f18aa6f1d
commit
d54f15b2c6
@ -248,7 +248,7 @@ impl BodyChunker {
|
|||||||
body,
|
body,
|
||||||
read_all: false,
|
read_all: false,
|
||||||
block_size,
|
block_size,
|
||||||
buf: VecDeque::new(),
|
buf: VecDeque::with_capacity(2 * block_size),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
async fn next(&mut self) -> Result<Option<Vec<u8>>, GarageError> {
|
async fn next(&mut self) -> Result<Option<Vec<u8>>, GarageError> {
|
||||||
|
Loading…
Reference in New Issue
Block a user