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