From 863c33d34f49d899b059cd852a8352cf61d499b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Mon, 17 Feb 2025 16:08:44 +0100 Subject: [PATCH] lower testnet base ports to avoid port clashes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Hitting the same ports as `status-desktop` is using during end-to-end tests is more probably when our rage is higher. Signed-off-by: Jakub SokoĊ‚owski --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index e6bdf76198..e0faa59f23 100644 --- a/Makefile +++ b/Makefile @@ -210,10 +210,10 @@ libbacktrace: # - --base-el-rpc-port + --el-port-offset * [0, --nodes + --light-clients) # - --base-el-ws-port + --el-port-offset * [0, --nodes + --light-clients) # - --base-el-auth-rpc-port + --el-port-offset * [0, --nodes + --light-clients) -UNIT_TEST_BASE_PORT := 39960 -REST_TEST_BASE_PORT := 40990 -MINIMAL_TESTNET_BASE_PORT := 35001 -MAINNET_TESTNET_BASE_PORT := 36501 +UNIT_TEST_BASE_PORT := 29960 +REST_TEST_BASE_PORT := 30990 +MINIMAL_TESTNET_BASE_PORT := 25001 +MAINNET_TESTNET_BASE_PORT := 26501 restapi-test: ./tests/simulation/restapi.sh \