fix flaky e2e test

This commit is contained in:
SbloodyS 2024-06-27 22:34:14 +08:00
parent 8fb382f859
commit 0dc066eb7f
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ public abstract class BaseWorkflowE2ETest {
.stream()
.filter(it -> it.workflowInstanceName().startsWith(workflowName))
.findFirst()
.orElseThrow(null);
.orElse(null);
}, Objects::nonNull);
}