Skip to content

Commit

Permalink
Resolve incorrect call for activity handler (#613) (#614)
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalless authored Sep 6, 2024
1 parent b457f47 commit 540b3c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ npm install durable-functions
```javascript
const df = require("durable-functions");
df.app.activity("myActivity", {
handler: async function (context) {
handler: async function (input, context) {
// your code here
},
});
Expand Down

0 comments on commit 540b3c0

Please sign in to comment.