From ed5da35b1a6a69b5386a5312cc20fbc1d0d7a6ae Mon Sep 17 00:00:00 2001 From: David Arnold Date: Sat, 2 Sep 2023 07:58:10 +0200 Subject: [PATCH] fix: align to socketio port default 9000 (#22277) * fix: align the frontent to socketio port default 3000 * Revert "fix: align the frontent to socketio port default 3000" This reverts commit 85df5bfbf9f87c954a3d25169c344ea43c9b8fff. * fix: change default socketio port [skip ci] --------- Co-authored-by: Ankush Menat --- node_utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node_utils.js b/node_utils.js index 38c9b1c1cc..88f1206e43 100644 --- a/node_utils.js +++ b/node_utils.js @@ -12,7 +12,7 @@ dns.setDefaultResultOrder("ipv4first"); function get_conf() { // defaults var conf = { - socketio_port: 3000, + socketio_port: 9000, }; var read_config = function (file_path) {