Skip to content

Commit

Permalink
metaconfig 5
Browse files Browse the repository at this point in the history
  • Loading branch information
anmenaga committed Oct 18, 2024
1 parent c9396e4 commit aec8bef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dsc_lib/src/discovery/command_discovery.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,14 @@ impl CommandDiscovery {
Ok(v) => {
return Ok(v);
},
Err(e) => { return Err(DscError::Operation(format!("{}", e))); }
Err(e) => { return Err(DscError::Operation(format!("{e}"))); }
}
} else if v.setting != serde_json::Value::Null {
match serde_json::from_value::<ResourcePathSetting>(v.setting) {
Ok(v) => {
return Ok(v);
},
Err(e) => { return Err(DscError::Operation(format!("{}", e))); }
Err(e) => { return Err(DscError::Operation(format!("{e}"))); }
}
}
}
Expand Down

0 comments on commit aec8bef

Please sign in to comment.