From 1934825ff52bff26bb88b709aee9ac73d3ea51c0 Mon Sep 17 00:00:00 2001 From: Lucio Franco Date: Mon, 24 Apr 2023 14:52:25 -0400 Subject: [PATCH] chore: Fix ci tests --- interop/Cargo.toml | 2 -- tests/integration_tests/src/lib.rs | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/interop/Cargo.toml b/interop/Cargo.toml index 387865131..16b69cbeb 100644 --- a/interop/Cargo.toml +++ b/interop/Cargo.toml @@ -29,8 +29,6 @@ tokio = {version = "1.0", features = ["rt-multi-thread", "time", "macros"]} tokio-stream = "0.1" tonic = {path = "../tonic", features = ["tls"]} tower = {version = "0.4"} -tracing = "0.1" -tracing-log = "0.1" tracing-subscriber = {version = "0.3"} [build-dependencies] diff --git a/tests/integration_tests/src/lib.rs b/tests/integration_tests/src/lib.rs index 3533aa632..3f81d59ec 100644 --- a/tests/integration_tests/src/lib.rs +++ b/tests/integration_tests/src/lib.rs @@ -55,5 +55,5 @@ pub mod mock { } pub fn trace_init() { - tracing_subscriber::fmt::init(); + let _ = tracing_subscriber::fmt::try_init(); }