Skip to content

Commit 9ec24bb

Browse files
committed
UNDO BEFORE MERGE - Test to see if we can get this test to pass
1 parent c184dac commit 9ec24bb

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -479,12 +479,12 @@ tasks.register('testIntegration', Test) {
479479
events = ["passed", "failed", "skipped", "started", "standard_out"]
480480
}
481481

482-
retry {
483-
if (isCiServer) {
484-
maxRetries = 3
485-
maxFailures = 15
486-
}
487-
}
482+
// retry {
483+
// if (isCiServer) {
484+
// maxRetries = 3
485+
// maxFailures = 15
486+
// }
487+
// }
488488
maxParallelForks = 8
489489
outputs.upToDateWhen { false }
490490
systemProperty 'junit.jupiter.execution.parallel.enabled', 'true'

src/main/java/bio/terra/common/AclUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
public class AclUtils {
1414
private static final Logger logger = LoggerFactory.getLogger(AclUtils.class);
1515

16-
private static final int RETRIES = 15;
17-
private static final int MAX_WAIT_SECONDS = 30;
16+
private static final int RETRIES = 30;
17+
private static final int MAX_WAIT_SECONDS = 60;
1818
private static final int INITIAL_WAIT_SECONDS = 2;
1919
private static final Random RANDOM = new Random();
2020

0 commit comments

Comments
 (0)