clarify app namespace

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
This commit is contained in:
Hannah Hunter 2022-12-12 17:13:49 -06:00
parent 3cc3f37edd
commit d6d51bab8b
1 changed files with 2 additions and 2 deletions

View File

@ -405,9 +405,9 @@ dapr invoke --app-id checkout --method checkout/100
### Namespaces
When running on [namespace supported platforms]({{< ref "service_invocation_api.md#namespace-supported-platforms" >}}), you include the namespace of the target app in the app ID: `checkout.production`
When running on [namespace supported platforms]({{< ref "service_invocation_api.md#namespace-supported-platforms" >}}), you include the namespace of the target app in the app ID. For example, following the `<app>.<namespace>` format, use `checkout.production`.
For example, invoking the example service with a namespace would look like:
Using this example, invoking the service with a namespace would look like:
```bash
curl http://localhost:3602/v1.0/invoke/checkout.production/method/checkout/100 -X POST