Skip to content

Commit 710ae11

Browse files
committed
fix(PersistenceLayer): formatting
1 parent 234f8a2 commit 710ae11

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

durable-storage/src/persistence_layer.rs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -202,10 +202,11 @@ impl PersistenceLayer {
202202
// call its destroy method to avoid UB. This happens in this unit expression.
203203
Checkpoint::new(db)?.create_checkpoint(&checkpoint_path)?;
204204

205-
let temp_db =
206-
rocksdb::DB::open_cf(&rocksdb_clone_as_checkpoint_options(), &checkpoint_path, [
207-
BLOB_CF,
208-
])?;
205+
let temp_db = rocksdb::DB::open_cf(
206+
&rocksdb_clone_as_checkpoint_options(),
207+
&checkpoint_path,
208+
[BLOB_CF],
209+
)?;
209210

210211
Ok(Self {
211212
db_instance: ManuallyDrop::new(temp_db),

0 commit comments

Comments
 (0)