Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/pages/guides/using/asynchronous_calls.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ let openwhisk = require("openwhisk");
function main(args) {
let ow = openwhisk();
return ow.actions.invoke({
name: 'worker', // the name of the action to invoke
name: 'my-worker', // the name of the action to invoke
blocking: false, // this is the flag that instructs to execute the worker asynchronous
result: false,
params: args
Expand Down Expand Up @@ -85,4 +85,4 @@ Tip: you can find the URI and the authorization for a trigger (or secured web ac
```
wsk trigger get my-worker-trigger -v
```
Retrieving the action activationId, and not the trigger activationId is a bit trickier in this case. You use the trigger activationId to retrieve the logs and in the logs you will find the action activationId that you can use to read the result.
Retrieving the action activationId, and not the trigger activationId is a bit trickier in this case. You use the trigger activationId to retrieve the logs and in the logs you will find the action activationId that you can use to read the result.