From 08307b2e9e1db40e85aee58ebd8aadb31461744d Mon Sep 17 00:00:00 2001 From: neonphog Date: Fri, 4 Aug 2023 11:15:51 -0600 Subject: [PATCH] windows test fix --- crates/tx5/src/test.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/tx5/src/test.rs b/crates/tx5/src/test.rs index aa11e6aa..f67a6307 100644 --- a/crates/tx5/src/test.rs +++ b/crates/tx5/src/test.rs @@ -105,6 +105,8 @@ async fn endpoint_sanity() { assert!(metrics.matches("tx5.endpoint.conn.count").count() > 0); assert!(metrics.matches("tx5.endpoint.conn.recv.By").count() > 0); assert!(metrics.matches("tx5.endpoint.conn.send.By").count() > 0); + + influxive.shutdown(); } #[tokio::test(flavor = "multi_thread")]