style: cargo fmt

pull/24376/head
Carol (Nichols || Goulding) 2020-02-17 10:53:57 -05:00
parent 9c7e3b2663
commit 9dc3699466
1 changed files with 1 additions and 2 deletions

View File

@ -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));
}