summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorTimo Kösters <timo@koesters.xyz>2022-10-08 13:57:01 +0200
committerNyaaori <+@nyaaori.cat>2022-10-10 14:02:02 +0200
commit8b5b7a1f637322e651c84d11a7b1616c7e29952e (patch)
tree67b37f970255518f8b494e17bc0eddbfa0a6cb9d /src/main.rs
parent50b0eb9929104a1eed008cbf0a8965a802c20306 (diff)
downloadconduit-8b5b7a1f637322e651c84d11a7b1616c7e29952e.zip
fix: panic on launch
Now we start the admin and sending threads at a later time.
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 1aad62b..ce7e578 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -28,7 +28,7 @@ use http::{
};
use opentelemetry::trace::{FutureExt, Tracer};
use ruma::api::{client::error::ErrorKind, IncomingRequest};
-use tokio::{signal};
+use tokio::signal;
use tower::ServiceBuilder;
use tower_http::{
cors::{self, CorsLayer},