Skip to content

Commit

Permalink
update samples-js (#499)
Browse files Browse the repository at this point in the history
  • Loading branch information
hossam-nasr authored Mar 24, 2023
1 parent 1371414 commit 74ab8dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples-js/functions/sayHello.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
});
Expand Down

0 comments on commit 74ab8dd

Please sign in to comment.