diff --git a/src/storage/chunk_engine/src/alloc/allocators.rs b/src/storage/chunk_engine/src/alloc/allocators.rs index 620a705a..82e1abfa 100644 --- a/src/storage/chunk_engine/src/alloc/allocators.rs +++ b/src/storage/chunk_engine/src/alloc/allocators.rs @@ -105,7 +105,7 @@ impl Allocators { .sum() } - pub fn get_allocate_tasks(&self, max_reserved: u64) -> tinyvec::ArrayVec<[GroupId; 3]> { + pub fn get_allocate_tasks(&self, max_reserved: u64) -> tinyvec::TinyVec<[GroupId; 3]> { self.vec .iter() .filter_map(|allocator| allocator.get_compact_task(max_reserved))