Skip to content

Commit 084ca34

Browse files
Change return type of waitForWorkflowStart method
Signed-off-by: artur-ciocanu <[email protected]>
1 parent e8d9394 commit 084ca34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk-workflows/src/main/java/io/dapr/workflows/client/DaprWorkflowClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ public WorkflowInstanceStatus waitForInstanceStart(String instanceId, Duration t
238238
* @throws TimeoutException when the workflow instance is not started within the specified amount of time
239239
*/
240240
@Nullable
241-
public DefaultWorkflowState waitForWorkflowStart(String instanceId, Duration timeout, boolean getInputsAndOutputs)
241+
public WorkflowState waitForWorkflowStart(String instanceId, Duration timeout, boolean getInputsAndOutputs)
242242
throws TimeoutException {
243243

244244
OrchestrationMetadata metadata = this.innerClient.waitForInstanceStart(instanceId, timeout, getInputsAndOutputs);

0 commit comments

Comments
 (0)