Skip to content

Commit

Permalink
increase test retry interval to reduce flakiness
Browse files Browse the repository at this point in the history
  • Loading branch information
dtrager02 committed Jan 16, 2025
1 parent 031d0bb commit 61a83fd
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ public void testQuickSubmitJob() throws IOException, InterruptedException {
agentId0,
agent0,
5,
Duration.ofSeconds(3).toMillis())) {
Duration.ofSeconds(10).toMillis())) {
fail("Failed to register agent: " + agent0.getContainerId());
}

Expand All @@ -221,7 +221,7 @@ public void testQuickSubmitJob() throws IOException, InterruptedException {
controlPlaneHost,
controlPlanePort,
10,
Duration.ofSeconds(2).toMillis())) {
Duration.ofSeconds(10).toMillis())) {
fail("Failed to start job worker.");
}

Expand Down Expand Up @@ -264,7 +264,7 @@ public void testRegularSubmitJob() throws IOException, InterruptedException {
agentId0,
agent0,
5,
Duration.ofSeconds(3).toMillis())) {
Duration.ofSeconds(10).toMillis())) {
fail("Failed to register agent: " + agent0.getContainerId());
}

Expand All @@ -274,7 +274,7 @@ public void testRegularSubmitJob() throws IOException, InterruptedException {
controlPlaneHost,
controlPlanePort,
5,
Duration.ofSeconds(2).toMillis())) {
Duration.ofSeconds(10).toMillis())) {
fail("Failed to start job worker.");
}

Expand Down

0 comments on commit 61a83fd

Please sign in to comment.