Skip to content

Commit

Permalink
Fix clippy issue
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaskrause committed Jan 10, 2024
1 parent 9c1d56a commit cf7df84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/graph/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,7 @@ impl<CT: ComponentType> Graph<CT> {
// load missing components in parallel
let loaded_components: Vec<(_, Result<Arc<dyn GraphStorage>>)> = components_to_load
.into_par_iter()
.map(|c| match component_path(&self.location, &c) {
.map(|c| match component_path(&self.location, c) {
Some(cpath) => {
debug!("loading component {} from {}", c, &cpath.to_string_lossy());
(c, load_component_from_disk(&cpath))
Expand Down

0 comments on commit cf7df84

Please sign in to comment.