We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c1d56a commit cf7df84Copy full SHA for cf7df84
core/src/graph/mod.rs
@@ -829,7 +829,7 @@ impl<CT: ComponentType> Graph<CT> {
829
// load missing components in parallel
830
let loaded_components: Vec<(_, Result<Arc<dyn GraphStorage>>)> = components_to_load
831
.into_par_iter()
832
- .map(|c| match component_path(&self.location, &c) {
+ .map(|c| match component_path(&self.location, c) {
833
Some(cpath) => {
834
debug!("loading component {} from {}", c, &cpath.to_string_lossy());
835
(c, load_component_from_disk(&cpath))
0 commit comments