From a579bec968557f180449d7c7cf59756d40f71b92 Mon Sep 17 00:00:00 2001 From: pducolin Date: Wed, 18 Dec 2024 11:59:27 +0100 Subject: [PATCH] [e2e] recreate stack on fakeintake grpc error --- test/new-e2e/pkg/utils/infra/retriable_errors.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/new-e2e/pkg/utils/infra/retriable_errors.go b/test/new-e2e/pkg/utils/infra/retriable_errors.go index b940cbcd2e064..211c9179511cb 100644 --- a/test/new-e2e/pkg/utils/infra/retriable_errors.go +++ b/test/new-e2e/pkg/utils/infra/retriable_errors.go @@ -55,5 +55,11 @@ func getKnownErrors() []knownError { errorMessage: `ssh: handshake failed: ssh: unable to authenticate`, retryType: ReCreate, }, + { + // https://datadoghq.atlassian.net/browse/ADXT-798 + // https://datadoghq.atlassian.net/browse/ADXT-813 + errorMessage: `error: awsx:ecs:FargateTaskDefinition resource '.+fakeintake.+' has a problem: grpc: the client connection is closing`, + retryType: ReCreate, + }, } }