Skip to content

Commit 363080f

Browse files
authored
Merge pull request #113701 from PramodValavala-MSFT/patch-109
(AzureCXP) add missing yield keyword in code sample
2 parents 6513338 + 5f55c0c commit 363080f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-functions/durable/durable-functions-http-features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ const df = require("durable-functions");
136136

137137
module.exports = df.orchestrator(function*(context){
138138
const url = context.df.getInput();
139-
const response = context.df.callHttp("GET", url)
139+
const response = yield context.df.callHttp("GET", url)
140140

141141
if (response.statusCode >= 400) {
142142
// handling of error codes goes here

0 commit comments

Comments
 (0)