From 1069f46a4074f37be7520ca6531848866cd568b0 Mon Sep 17 00:00:00 2001 From: Erik Date: Tue, 25 Apr 2023 15:49:07 +0200 Subject: [PATCH] change control port to 14000 --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index e5746f0..99392b3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -27,7 +27,7 @@ async fn main() { .with_state(shared_state); // run our app with hyper - let addr = SocketAddr::from(([127, 0, 0, 1], 3000)); + let addr = SocketAddr::from(([127, 0, 0, 1], 14000)); tracing::debug!("listening on {}", addr); axum::Server::bind(&addr) .serve(app.into_make_service())