mirror of https://github.com/dapr/quickstarts.git
Merge pull request #22 from dapr/ryanvolum/dapr
Fixed occurences of "action"
This commit is contained in:
commit
f8543120e9
|
|
@ -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 platform’s 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 platform’s 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
|
||||
|
|
|
|||
Loading…
Reference in New Issue