From 3c8cbbc023b551b56e7063fceb2d5e87f5b39317 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Tue, 29 Aug 2023 14:38:29 +0530 Subject: [PATCH] fix: port number mismatch when having multiple benches (#1480) --- bench/config/common_site_config.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bench/config/common_site_config.py b/bench/config/common_site_config.py index a3f1f6a22..0514c24ee 100644 --- a/bench/config/common_site_config.py +++ b/bench/config/common_site_config.py @@ -129,6 +129,10 @@ def make_ports(bench_path): ports[key] = value + # Backward compatbility: always keep redis_cache and redis_socketio port same + # Note: not required from v15 + ports["redis_socketio"] = ports["redis_cache"] + return ports