Skip to content

Commit

Permalink
Fixup lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pcholakov committed Nov 27, 2024
1 parent 6c33f39 commit aceb786
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions crates/partition-store/src/partition_store_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -189,13 +189,9 @@ impl PartitionStoreManager {
"Importing partition store snapshot"
);

if let Err(e) = self
.rocksdb
self.rocksdb
.import_cf(cf_name.clone(), opts, import_metadata)
.await
{
return Err(e);
}
.await?;

assert!(self.rocksdb.inner().cf_handle(&cf_name).is_some());
let partition_store = PartitionStore::new(
Expand Down

0 comments on commit aceb786

Please sign in to comment.