From dcbbf2e1fe1f4b268ccddf0296f6f455c137ad1f Mon Sep 17 00:00:00 2001 From: Maple Date: Sat, 31 Jan 2026 17:28:49 +0100 Subject: [PATCH] revert changing of default server port --- rnex-core/src/executables/common.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rnex-core/src/executables/common.rs b/rnex-core/src/executables/common.rs index 0d5ca06..416e450 100644 --- a/rnex-core/src/executables/common.rs +++ b/rnex-core/src/executables/common.rs @@ -40,7 +40,7 @@ pub static SERVER_PORT: Lazy = Lazy::new(|| { env::var("SERVER_PORT") .ok() .and_then(|s| s.parse().ok()) - .unwrap_or(6000) + .unwrap_or(10000) }); pub static KERBEROS_SERVER_PASSWORD: Lazy = Lazy::new(|| {