Skip to content

Commit

Permalink
increased retry count
Browse files Browse the repository at this point in the history
  • Loading branch information
nathalapooja committed Oct 25, 2023
1 parent e309dab commit da2f6e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/apm/metrics_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"time"
)

const testRetryCount = 5
const testRetryCount = 6
const namespace = "AWS/APM"

type APMMetricsRunner struct {
Expand All @@ -34,7 +34,7 @@ func (t *APMMetricsRunner) Validate() status.TestGroupResult {
if testResult.Status == status.SUCCESSFUL {
break
}
time.Sleep(20 * time.Second)
time.Sleep(30 * time.Second)
}
testResults[i] = testResult
}
Expand Down

0 comments on commit da2f6e7

Please sign in to comment.