We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 016b470 commit 1c03f30Copy full SHA for 1c03f30
src/main/java/com/uber/cadence/internal/testservice/TestWorkflowMutableStateImpl.java
@@ -209,6 +209,8 @@ public Optional<WorkflowExecutionCloseStatus> getCloseStatus() {
209
return Optional.of(WorkflowExecutionCloseStatus.CANCELED);
210
case COMPLETED:
211
return Optional.of(WorkflowExecutionCloseStatus.COMPLETED);
212
+ case CONTINUED_AS_NEW:
213
+ return Optional.of(WorkflowExecutionCloseStatus.CONTINUED_AS_NEW);
214
}
215
throw new IllegalStateException("unreachable");
216
0 commit comments