Skip to content

Commit

Permalink
add Send to batch_get_or_else (#297)
Browse files Browse the repository at this point in the history
Signed-off-by: Joe Zhou <[email protected]>
  • Loading branch information
Mossaka authored May 31, 2021
1 parent b7b8b8b commit 73a00ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/transaction/buffer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ impl Buffer {
f: F,
) -> Result<impl Iterator<Item = KvPair>>
where
F: FnOnce(Box<dyn Iterator<Item = Key>>) -> Fut,
F: FnOnce(Box<dyn Iterator<Item = Key> + Send>) -> Fut,
Fut: Future<Output = Result<Vec<KvPair>>>,
{
let (cached_results, undetermined_keys) = {
Expand Down

0 comments on commit 73a00ff

Please sign in to comment.