From 261f290ebda00e3b453e941e97f46f2a054980b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Chodo=C5=82a?= <43241881+kamilchodola@users.noreply.github.com> Date: Tue, 5 Nov 2024 11:06:23 +0100 Subject: [PATCH] Fix --- .github/workflows/sync-supported-chains.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/sync-supported-chains.yml b/.github/workflows/sync-supported-chains.yml index 41975e85e08..5c2045dd7e4 100644 --- a/.github/workflows/sync-supported-chains.yml +++ b/.github/workflows/sync-supported-chains.yml @@ -218,11 +218,6 @@ jobs: docker logs -f "$container_name" | while read -r line; do echo "$line" - - if [[ "$line" == *"Nethermind is shut down"* ]]; then - echo "Unexpected termination detected: $line" - exit 1 - fi if [ "$found_bad_log" = true ]; then counter=$((counter + 1)) @@ -263,10 +258,8 @@ jobs: fi done - if [ "$found_bad_log" = true ]; then - echo "Error detected, but the logs stopped unexpectedly. Exiting." - exit 1 - fi + echo "Unexpected termination detected - probably due to critical issue." + exit 1 - name: Get Consensus Logs if: always() && matrix.config.network != 'joc-mainnet' && matrix.config.network != 'joc-testnet' && matrix.config.network != 'linea-mainnet' && matrix.config.network != 'linea-sepolia'