Merge pull request #22 from dapr/ryanvolum/dapr

Fixed occurences of "action"
This commit is contained in:
Yaron Schneider 2019-10-10 13:55:32 -07:00 committed by GitHub
commit f8543120e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ Each service in this sample is written in a different programming language, but
### Service Invocation
When our front-end server calls the respective operation services (see `server.js` code below), it doesn't need to know what IP address they live at or how they were built. Instead it calls their local action side-car by name, which knows how to invoke the method on the service, taking advantage of the platforms service discovery mechanism, in this case Kubernetes DNS resolution.
When our front-end server calls the respective operation services (see `server.js` code below), it doesn't need to know what IP address they live at or how they were built. Instead it calls their local dapr side-car by name, which knows how to invoke the method on the service, taking advantage of the platforms service discovery mechanism, in this case Kubernetes DNS resolution.
The code below shows calls to the “add” and “subtract” services via the Dapr URLs:
```js