Skip to content

Commit

Permalink
Extend timeouts in tests for deployments. (#435)
Browse files Browse the repository at this point in the history
  • Loading branch information
corneil authored Feb 6, 2024
1 parent 8734661 commit 4fca391
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ protected Resource testApplication() {

@Override
protected Timeout deploymentTimeout() {
return new Timeout(20, 5000);
return new Timeout(30, 5000);
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public abstract class AbstractSchedulerIntegrationJUnit5Tests {
* Return the timeout to use for repeatedly querying that a task has been scheduled.
* Default value is one minute, being queried every 5 seconds.
*/
private Timeout scheduleTimeout = new Timeout(12, 5000);
private Timeout scheduleTimeout = new Timeout(30, 5000);

/**
* Return the timeout to use for repeatedly querying whether a task has been unscheduled.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public abstract class AbstractSchedulerIntegrationTests {
* Return the timeout to use for repeatedly querying that a task has been scheduled.
* Default value is one minute, being queried every 5 seconds.
*/
private Timeout scheduleTimeout = new Timeout(12, 5000);
private Timeout scheduleTimeout = new Timeout(30, 5000);

/**
* Return the timeout to use for repeatedly querying whether a task has been unscheduled.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ protected String randomName() {
* @return the timeout
*/
protected Timeout deploymentTimeout() {
return new Timeout(12, 5000);
return new Timeout(30, 5000);
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ protected String randomName() {
* @return the deployment timeout value
*/
protected Timeout deploymentTimeout() {
return new Timeout(12, 5000);
return new Timeout(30, 5000);
}

/**
Expand Down

0 comments on commit 4fca391

Please sign in to comment.