From e309dab47fed59f80c1349891699cc8b1925509f Mon Sep 17 00:00:00 2001 From: Pooja Reddy Nathala Date: Wed, 25 Oct 2023 13:03:06 -0400 Subject: [PATCH] increased retry count --- test/apm/metrics_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/apm/metrics_test.go b/test/apm/metrics_test.go index 03660cbbe..cf5aac3c8 100644 --- a/test/apm/metrics_test.go +++ b/test/apm/metrics_test.go @@ -34,7 +34,7 @@ func (t *APMMetricsRunner) Validate() status.TestGroupResult { if testResult.Status == status.SUCCESSFUL { break } - time.Sleep(15 * time.Second) + time.Sleep(20 * time.Second) } testResults[i] = testResult }