Skip to content

Commit 540b3c0

Browse files
authored
Resolve incorrect call for activity handler (#613) (#614)
1 parent b457f47 commit 540b3c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ npm install durable-functions
6565
```javascript
6666
const df = require("durable-functions");
6767
df.app.activity("myActivity", {
68-
handler: async function (context) {
68+
handler: async function (input, context) {
6969
// your code here
7070
},
7171
});

0 commit comments

Comments
 (0)