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 89c9578 commit 110f20bCopy full SHA for 110f20b
dsc_lib/src/configure/mod.rs
@@ -833,7 +833,7 @@ impl Configurator {
833
resolved_in_this_pass.push(name.clone());
834
}
835
Err(_) => {
836
- continue;
+ // Parameter couldn't be resolved in this pass, try next pass
837
838
839
} else {
@@ -842,7 +842,7 @@ impl Configurator {
842
843
844
if resolved_in_this_pass.is_empty() {
845
- let unresolved_names: Vec<_> = unresolved_parameters.keys().map(|k| k.as_str()).collect();
+ let unresolved_names: Vec<_> = unresolved_parameters.keys().map(std::string::String::as_str).collect();
846
return Err(DscError::Validation(t!("configure.mod.circularDependency", parameters = unresolved_names.join(", ")).to_string()));
847
848
0 commit comments