Skip to content

Commit 267b421

Browse files
committed
Fix NPE
Signed-off-by: siri-varma <[email protected]> Signed-off-by: sirivarma <[email protected]>
1 parent b799023 commit 267b421

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/src/main/java/io/dapr/examples/workflows/childworkflow/DemoChildWorkerflowClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public static void main(String[] args) {
3030
String instanceId = client.scheduleNewWorkflow(DemoWorkflow.class);
3131
System.out.printf("Started a new child-workflow model workflow with instance ID: %s%n", instanceId);
3232
WorkflowInstanceStatus workflowInstanceStatus =
33-
client.waitForInstanceCompletion(instanceId, null, true);
33+
client.waitForInstanceCompletion(instanceId, null, true);
3434

3535
String result = workflowInstanceStatus.readOutputAs(String.class);
3636
System.out.printf("workflow instance with ID: %s completed with result: %s%n", instanceId, result);

0 commit comments

Comments
 (0)