From b4efbd2cbab03f8aabc92585b9ed6789b0d2840a Mon Sep 17 00:00:00 2001 From: esraa Date: Thu, 12 Dec 2024 09:27:38 +0200 Subject: [PATCH] f --- roles/tests-integration/tests/common/mod.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/roles/tests-integration/tests/common/mod.rs b/roles/tests-integration/tests/common/mod.rs index 5f78e4e88a..dd2bfb6639 100644 --- a/roles/tests-integration/tests/common/mod.rs +++ b/roles/tests-integration/tests/common/mod.rs @@ -275,7 +275,9 @@ pub async fn start_pool( let pool = test_pool.pool.clone(); let pool_clone = pool.clone(); tokio::task::spawn(async move { - assert!(pool_clone.start().await.is_ok()); + let ret = pool_clone.start().await; + dbg!(&ret); + assert!(ret.is_ok()); }); // Wait a bit to let the pool exchange initial messages with the TP tokio::time::sleep(std::time::Duration::from_secs(1)).await;