Skip to content

Commit

Permalink
Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
cgettys-microsoft committed Dec 20, 2024
1 parent 1594d49 commit 9e7422e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/samples/echomain/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -140,12 +140,12 @@ fn build_config(config: ConfigurationPackage) -> Config {

// Use the config framework
let source = FabricConfigSource::new(config);
let s = Config::builder()

Config::builder()
.add_source(source)
.build()
.inspect_err(|e| info!("config build failed: {}", e))
.unwrap();
s
.unwrap()
}

/// Send health ok to SF to validate health reporting code
Expand Down

0 comments on commit 9e7422e

Please sign in to comment.