From 9dc3699466976cec465cf7b11e2aa359334ebe5f Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Mon, 17 Feb 2020 10:53:57 -0500 Subject: [PATCH] style: cargo fmt --- src/storage/rocksdb.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/storage/rocksdb.rs b/src/storage/rocksdb.rs index 904912f19f..c6b28953ac 100644 --- a/src/storage/rocksdb.rs +++ b/src/storage/rocksdb.rs @@ -700,8 +700,7 @@ impl RocksDB { id_mutex_map.insert(bucket_id, Mutex::new(next_id)); } BucketEntryType::Bucket => { - let bucket = - Bucket::decode(&*value).expect("unexpected error decoding bucket"); + let bucket = Bucket::decode(&*value).expect("unexpected error decoding bucket"); let key = bucket_key(bucket.org_id, &bucket.name); bucket_map.insert(key, Arc::new(bucket)); }