From a0ebc455d98f66f20178f431fb0b9b046602489e Mon Sep 17 00:00:00 2001 From: Elad Gildnur Date: Sun, 15 Sep 2024 17:11:37 +0300 Subject: [PATCH] Add "Connection refused" to allowedErrorsDuringEmergencyMode --- testutil/e2e/allowedErrorList.go | 1 + 1 file changed, 1 insertion(+) diff --git a/testutil/e2e/allowedErrorList.go b/testutil/e2e/allowedErrorList.go index bb95b79e5a..5b083bae70 100644 --- a/testutil/e2e/allowedErrorList.go +++ b/testutil/e2e/allowedErrorList.go @@ -13,6 +13,7 @@ var allowedErrors = map[string]string{ var allowedErrorsDuringEmergencyMode = map[string]string{ "connection refused": "Connection to tendermint port sometimes can happen as we shut down the node and we try to fetch info during emergency mode", + "Connection refused": "Connection to tendermint port sometimes can happen as we shut down the node and we try to fetch info during emergency mode", "connection reset by peer": "Connection to tendermint port sometimes can happen as we shut down the node and we try to fetch info during emergency mode", "Failed Querying EpochDetails": "Connection to tendermint port sometimes can happen as we shut down the node and we try to fetch info during emergency mode", }