From 74ab8ddd6232d44b868e4bc83ad38f3f7aad968b Mon Sep 17 00:00:00 2001 From: Hossam Mabed <31644556+hossam-nasr@users.noreply.github.com> Date: Fri, 24 Mar 2023 15:04:10 -0700 Subject: [PATCH] update samples-js (#499) --- samples-js/functions/sayHello.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples-js/functions/sayHello.js b/samples-js/functions/sayHello.js index c32f64e..f0f07ed 100644 --- a/samples-js/functions/sayHello.js +++ b/samples-js/functions/sayHello.js @@ -22,7 +22,7 @@ df.app.orchestration("sayHelloWithActivity", function* (context) { df.app.orchestration("sayHelloWithCustomStatus", function* (context) { const input = context.df.getInput(); - const output = yield context.df.callActivity(sayHelloActivityName, input); + const output = yield context.df.callActivity(helloActivityName, input); context.df.setCustomStatus(output); return output; });