Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't expose BoxFuture in public API
`ObjectStore::get` calls itself recursively, so the returned future needs to be boxed. However, this is an implementation detail, there's no reason to expose it in the public API. Instead, we can move the recursive call to a separate `get_impl` function that handles the boxing, and `get` can just be a standard async function.
- Loading branch information