chore: Fix ci tests

This commit is contained in:
Lucio Franco
2023-04-24 14:52:25 -04:00
parent 30b8f07b9f
commit 1934825ff5
2 changed files with 1 additions and 3 deletions
-2
View File
@@ -29,8 +29,6 @@ tokio = {version = "1.0", features = ["rt-multi-thread", "time", "macros"]}
tokio-stream = "0.1" tokio-stream = "0.1"
tonic = {path = "../tonic", features = ["tls"]} tonic = {path = "../tonic", features = ["tls"]}
tower = {version = "0.4"} tower = {version = "0.4"}
tracing = "0.1"
tracing-log = "0.1"
tracing-subscriber = {version = "0.3"} tracing-subscriber = {version = "0.3"}
[build-dependencies] [build-dependencies]
+1 -1
View File
@@ -55,5 +55,5 @@ pub mod mock {
} }
pub fn trace_init() { pub fn trace_init() {
tracing_subscriber::fmt::init(); let _ = tracing_subscriber::fmt::try_init();
} }