From d2d8c1ffcf0bc845404da3cf14462d6e847d61c6 Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Sat, 14 Oct 2023 19:20:49 -0400 Subject: [PATCH] Fix build for compare with tracing. --- src/bin_compare.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin_compare.rs b/src/bin_compare.rs index 4c1216b..4486b9d 100644 --- a/src/bin_compare.rs +++ b/src/bin_compare.rs @@ -27,7 +27,7 @@ fn main() -> Result<(), Box> { let rt = tokio::runtime::Runtime::new()?; let result = rt.block_on(async { init_telemetry()?; - let main_body_result = main_body(); + let main_body_result = main_body().await; shutdown_telemetry()?; main_body_result });