Skip to content

Commit

Permalink
format code
Browse files Browse the repository at this point in the history
  • Loading branch information
burmecia committed Oct 23, 2024
1 parent 419c390 commit b4d035f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion wrappers/src/fdw/wasm_fdw/wasm_fdw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,10 @@ impl ForeignDataWrapper<WasmFdwError> for WasmFdw {
config.wasm_component_model(true);
let engine = Engine::new(&config)?;

report_info(&format!("==curr dir {}", std::env::current_dir().unwrap().display()));
report_info(&format!(
"==curr dir {}",
std::env::current_dir().unwrap().display()
));
let component =
download_component(&rt, &engine, pkg_url, pkg_name, pkg_version, pkg_checksum)?;

Expand Down

0 comments on commit b4d035f

Please sign in to comment.