Remove unnecessary attribute to suppress clippy
This commit is contained in:
parent
996dc309f7
commit
578768d7df
@ -90,8 +90,8 @@ impl Searcher {
|
||||
}
|
||||
open_searcher = Self::open(path, tokenizers);
|
||||
}
|
||||
#[allow(clippy::match_wild_err_arm)]
|
||||
let searcher = match open_searcher {
|
||||
Ok(s) => s,
|
||||
Err(Error::Search(e)) => match e {
|
||||
SearcherError::WriteLockAcquisitionError => panic!(
|
||||
r#"
|
||||
@ -117,8 +117,7 @@ Then try to restart Plume
|
||||
),
|
||||
e => Err(e).unwrap(),
|
||||
},
|
||||
Err(_) => panic!("Unexpected error while opening search index"),
|
||||
Ok(s) => s,
|
||||
_ => panic!("Unexpected error while opening search index"),
|
||||
};
|
||||
|
||||
searcher
|
||||
|
Loading…
Reference in New Issue
Block a user