From 0220d0f9de9f509cc737c119d11d7ad4212f1c87 Mon Sep 17 00:00:00 2001 From: Paul Tagliamonte Date: Tue, 1 Apr 2025 11:55:08 -0400 Subject: [PATCH] ok --- rust/kcl-lib/src/execution/exec_ast.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/rust/kcl-lib/src/execution/exec_ast.rs b/rust/kcl-lib/src/execution/exec_ast.rs index 5ad739fd7..524525100 100644 --- a/rust/kcl-lib/src/execution/exec_ast.rs +++ b/rust/kcl-lib/src/execution/exec_ast.rs @@ -2560,6 +2560,7 @@ export c = a + 2 } drop(results_send); + eprintln!("Collecting results"); while let Some((module_name, module_result)) = results_recv.recv().await { eprintln!("Got result for {}", module_name); eprintln!("{:?}", module_result);