File tree Expand file tree Collapse file tree
DynamoDbEncryption/src/test/java/software/amazon/cryptography/examples Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3030 - name : Build and publish to mavenLocal
3131 run : ./gradlew publishToMavenLocal
3232
33- - name : Build Examples/DDBECwithSDKV2
34- working-directory : Examples/DDBECwithSDKV2
35- run : ./gradlew build
36-
37- - name : Build Examples/Migration/PlaintextToAWSDBE
38- working-directory : Examples/Migration/PlaintextToAWSDBE
39- run : ./gradlew build
40-
41- - name : Build Examples/Migration/DDBECv2ToAWSDBE
42- working-directory : Examples/Migration/DDBECv2ToAWSDBE
43- run : ./gradlew build
44-
4533 - name : Build Examples/DynamoDbEncryption
4634 working-directory : Examples/DynamoDbEncryption
4735 run : ./gradlew build
Original file line number Diff line number Diff line change 1818
1919# Package Files #
2020* .jar
21+ ! gradle /wrapper /gradle-wrapper.jar
2122* .war
2223* .nar
2324* .ear
Original file line number Diff line number Diff line change @@ -19,23 +19,23 @@ public class RetryAnalyzer implements IRetryAnalyzer {
1919
2020 @ Override
2121 public boolean retry (ITestResult result ) {
22- if (retryCount < maxRetryCount ) {
23- retryCount ++;
24- logger .info (
25- String .format (
26- "Retrying test '%s' - attempt %d/%d" ,
27- result .getName (),
28- retryCount ,
29- maxRetryCount
30- )
31- );
32- try {
33- Thread .sleep (5000L * (long ) Math .pow (2 , retryCount - 1 )); // simple exponential backoff
34- } catch (InterruptedException e ) {
35- Thread .currentThread ().interrupt ();
36- }
37- return true ;
38- }
22+ // if (retryCount < maxRetryCount) {
23+ // retryCount++;
24+ // logger.info(
25+ // String.format(
26+ // "Retrying test '%s' - attempt %d/%d",
27+ // result.getName(),
28+ // retryCount,
29+ // maxRetryCount
30+ // )
31+ // );
32+ // try {
33+ // Thread.sleep(5000L * (long) Math.pow(2, retryCount - 1)); // simple exponential backoff
34+ // } catch (InterruptedException e) {
35+ // Thread.currentThread().interrupt();
36+ // }
37+ // return true;
38+ // }
3939 return false ;
4040 }
4141}
You can’t perform that action at this time.
0 commit comments