Skip to content

Commit

Permalink
Increasing wait time for deprovision status
Browse files Browse the repository at this point in the history
Signed-off-by: Joshua Palis <[email protected]>
  • Loading branch information
joshpalis committed Jan 3, 2024
1 parent a5310d9 commit cec9ad9
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public void testCreateAndProvisionLocalModelWorkflow() throws Exception {
Response deprovisionResponse = deprovisionWorkflow(workflowId);
assertBusy(
() -> { getAndAssertWorkflowStatus(workflowId, State.NOT_STARTED, ProvisioningProgress.NOT_STARTED); },
30,
60,
TimeUnit.SECONDS
);
}
Expand Down Expand Up @@ -199,7 +199,7 @@ public void testCreateAndProvisionRemoteModelWorkflow() throws Exception {
Response deprovisionResponse = deprovisionWorkflow(workflowId);
assertBusy(
() -> { getAndAssertWorkflowStatus(workflowId, State.NOT_STARTED, ProvisioningProgress.NOT_STARTED); },
30,
60,
TimeUnit.SECONDS
);
}
Expand Down Expand Up @@ -237,7 +237,7 @@ public void testCreateAndProvisionDeployedRemoteModelWorkflow() throws Exception
Response deprovisionResponse = deprovisionWorkflow(workflowId);
assertBusy(
() -> { getAndAssertWorkflowStatus(workflowId, State.NOT_STARTED, ProvisioningProgress.NOT_STARTED); },
30,
60,
TimeUnit.SECONDS
);
}
Expand Down Expand Up @@ -278,7 +278,7 @@ public void testCreateAndProvisionAgentFrameworkWorkflow() throws Exception {
Response deprovisionResponse = deprovisionWorkflow(workflowId);
assertBusy(
() -> { getAndAssertWorkflowStatus(workflowId, State.NOT_STARTED, ProvisioningProgress.NOT_STARTED); },
30,
60,
TimeUnit.SECONDS
);

Expand Down Expand Up @@ -324,7 +324,7 @@ public void testCreateAndProvisionRegisterLocalModelWithDeployFlag() throws Exce
Response deprovisionResponse = deprovisionWorkflow(workflowId);
assertBusy(
() -> { getAndAssertWorkflowStatus(workflowId, State.NOT_STARTED, ProvisioningProgress.NOT_STARTED); },
30,
60,
TimeUnit.SECONDS
);
}
Expand Down

0 comments on commit cec9ad9

Please sign in to comment.