Skip to content

Commit 2a32349

Browse files
authored
Add X-Ray valiator retry time (#317)
*Description of changes:* Add X-Ray valiator retry time from 10 -> 30 By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent ab06470 commit 2a32349

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

validator/src/main/java/com/amazon/aoc/validators/ValidatorFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public IValidator launchValidator(ValidationConfig validationConfig) throws Exce
4242
FileConfig expectedData = null;
4343
switch (validationConfig.getValidationType()) {
4444
case "trace":
45-
validator = new TraceValidator(new XRayService(context.getRegion()), 2, 10);
45+
validator = new TraceValidator(new XRayService(context.getRegion()), 2, 30);
4646
expectedData = validationConfig.getExpectedTraceTemplate();
4747
break;
4848
case "cw-metric":

0 commit comments

Comments
 (0)