Skip to content

Commit

Permalink
fix: port number mismatch when having multiple benches
Browse files Browse the repository at this point in the history
  • Loading branch information
ankush committed Aug 29, 2023
1 parent 5a2c052 commit f8f73a4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions bench/config/common_site_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down

0 comments on commit f8f73a4

Please sign in to comment.