2
0
mirror of https://github.com/frappe/bench.git synced 2025-01-08 00:04:38 +00:00

fix: port number mismatch when having multiple benches (#1480)

This commit is contained in:
Ankush Menat 2023-08-29 14:38:29 +05:30 committed by GitHub
parent 5a2c052b9b
commit 3c8cbbc023
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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