forked from Deuxfleurs/garage
Small optimisation
This commit is contained in:
parent
3f18aa6f1d
commit
d54f15b2c6
1 changed files with 1 additions and 1 deletions
|
@ -248,7 +248,7 @@ impl BodyChunker {
|
|||
body,
|
||||
read_all: false,
|
||||
block_size,
|
||||
buf: VecDeque::new(),
|
||||
buf: VecDeque::with_capacity(2 * block_size),
|
||||
}
|
||||
}
|
||||
async fn next(&mut self) -> Result<Option<Vec<u8>>, GarageError> {
|
||||
|
|
Loading…
Reference in a new issue