Skip to content

Commit 7aea4e2

Browse files
committed
increase timeout for retry
1 parent 5823988 commit 7aea4e2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/src/test/java/io/orkes/conductor/client/WorkflowRetryTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public void testRetry() {
6060
startWorkflowRequest.setVersion(1);
6161
startWorkflowRequest.setInput(new HashMap<>());
6262
String workflowId = workflowClient.startWorkflow(startWorkflowRequest);
63-
Uninterruptibles.sleepUninterruptibly(Duration.ofMillis(100));
63+
Uninterruptibles.sleepUninterruptibly(Duration.ofMillis(1000));
6464
Workflow workflow = workflowClient.getWorkflow(workflowId, true);
6565

6666
String taskId = workflow.getTasks().get(0).getTaskId();

0 commit comments

Comments
 (0)