From ff21cd4fcea8360321ad7a0d2f44f042209af8e7 Mon Sep 17 00:00:00 2001 From: Revant Nandgaonkar Date: Fri, 21 May 2021 16:09:43 +0530 Subject: [PATCH] fix: set correct default redis async broker in node_utils --- node_utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node_utils.js b/node_utils.js index b87c99a07c..ac2f96f655 100644 --- a/node_utils.js +++ b/node_utils.js @@ -6,7 +6,7 @@ const bench_path = path.resolve(__dirname, '..', '..'); function get_conf() { // defaults var conf = { - redis_async_broker_port: 12311, + redis_async_broker_port: 'redis://localhost:12311', socketio_port: 3000 };