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;