From d80082c7849220750108184deaab4784eb948b67 Mon Sep 17 00:00:00 2001 From: Etan Kissling Date: Fri, 6 Jan 2023 23:38:38 +0100 Subject: [PATCH] re-enable `--sync-light-client` in CI testnets (#4469) libp2p issues related to operation cancellations have been addressed in https://github.com/status-im/nim-libp2p/pull/816 This means we can once more enable `--sync-light-client` in CI, without having to deal with spurious CI failures due to the cancellation issues. --- scripts/launch_local_testnet.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/launch_local_testnet.sh b/scripts/launch_local_testnet.sh index f5d88a014..0bbd4e96d 100755 --- a/scripts/launch_local_testnet.sh +++ b/scripts/launch_local_testnet.sh @@ -1003,6 +1003,7 @@ for NUM_NODE in $(seq 0 $(( NUM_NODES - 1 ))); do --keymanager-token-file="${DATA_DIR}/keymanager-token" \ --rest-port="$(( BASE_REST_PORT + NUM_NODE ))" \ --metrics-port="$(( BASE_METRICS_PORT + NUM_NODE ))" \ + --sync-light-client=on \ ${EXTRA_ARGS} \ &> "${DATA_DIR}/log${NUM_NODE}.txt" &