We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 196a960 commit 62c471cCopy full SHA for 62c471c
validator/src/main/java/com/amazon/aoc/helpers/RetryHelper.java
@@ -42,6 +42,7 @@ public static boolean retry(
42
return true;
43
} catch (Exception ex) {
44
exceptionInTheEnd = ex;
45
+ log.warn(ex);
46
if (retryCount != 0) { // don't sleep before leave this loop
47
log.info(
48
"retrying after {} seconds", TimeUnit.MILLISECONDS.toSeconds(sleepInMilliSeconds));
0 commit comments