Skip to content

Commit

Permalink
chore: apply suggestions from CR
Browse files Browse the repository at this point in the history
  • Loading branch information
WenyXu committed May 13, 2024
1 parent b15ad13 commit 93bac03
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/common/meta/src/cache/registry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,7 @@ impl CacheInvalidator for LayeredCacheRegistry {
for registry in &self.layers {
results.push(registry.invalidate(ctx, caches).await);
}
results.into_iter().collect::<Result<Vec<_>>>()?;
Ok(())
results.into_iter().collect::<Result<Vec<_>>>().map(())
}
}

Expand Down

0 comments on commit 93bac03

Please sign in to comment.