Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
name: Build Validation

on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ void longTimerNonblockingNoExternal() throws TimeoutException {


@Test
@Disabled("Test is disabled for investigation")
void longTimeStampTimer() throws TimeoutException {
final String orchestratorName = "LongTimeStampTimer";
final Duration delay = Duration.ofSeconds(7);
Expand Down Expand Up @@ -694,7 +695,7 @@ void externalEventsWithTimeouts(boolean raiseEvent) throws IOException, TimeoutE
DurableTaskGrpcWorker worker = this.createWorkerBuilder()
.addOrchestrator(orchestratorName, ctx -> {
try {
ctx.waitForExternalEvent(eventName, Duration.ofSeconds(3)).await();
ctx.waitForExternalEvent(eventName, Duration.ofSeconds(10)).await();
ctx.complete("received");
} catch (TaskCanceledException e) {
ctx.complete(e.getMessage());
Expand All @@ -719,7 +720,7 @@ void externalEventsWithTimeouts(boolean raiseEvent) throws IOException, TimeoutE
if (raiseEvent) {
assertEquals("received", output);
} else {
assertEquals("Timeout of PT3S expired while waiting for an event named '" + eventName + "' (ID = 0).", output);
assertEquals("Timeout of PT10S expired while waiting for an event named '" + eventName + "' (ID = 0).", output);
}
}
}
Expand Down
Loading