Skip to content

Commit b36e0fe

Browse files
committed
updated timeout for externalEventsWithTimeouts test
1 parent 5afefc4 commit b36e0fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/test/java/com/microsoft/durabletask/IntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@ void externalEventsWithTimeouts(boolean raiseEvent) throws IOException, TimeoutE
694694
DurableTaskGrpcWorker worker = this.createWorkerBuilder()
695695
.addOrchestrator(orchestratorName, ctx -> {
696696
try {
697-
ctx.waitForExternalEvent(eventName, Duration.ofSeconds(3)).await();
697+
ctx.waitForExternalEvent(eventName, Duration.ofSeconds(10)).await();
698698
ctx.complete("received");
699699
} catch (TaskCanceledException e) {
700700
ctx.complete(e.getMessage());

0 commit comments

Comments
 (0)