Skip to content

Commit db4d635

Browse files
Merge pull request #228385 from cgillum/patch-18
Fix Java snippet in durable functions instance management article
2 parents ccb188c + 45713cf commit db4d635

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-functions/durable/durable-functions-instance-management.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -852,7 +852,7 @@ public HttpResponseMessage httpStartAndWait(
852852
try {
853853
String timeoutString = req.getQueryParameters().get("timeout");
854854
Integer timeoutInSeconds = Integer.parseInt(timeoutString);
855-
OrchestrationMetadata orchestration = client.waitForInstanceStart(
855+
OrchestrationMetadata orchestration = client.waitForInstanceCompletion(
856856
instanceId,
857857
Duration.ofSeconds(timeoutInSeconds),
858858
true /* getInputsAndOutputs */);

0 commit comments

Comments
 (0)