From 22f01ad1519e66733ca78e5f95b1fea263cca070 Mon Sep 17 00:00:00 2001 From: Yaron Schneider Date: Mon, 9 Aug 2021 13:00:35 -0700 Subject: [PATCH] Update howto-invoke-discover-services.md --- .../service-invocation/howto-invoke-discover-services.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daprdocs/content/en/developing-applications/building-blocks/service-invocation/howto-invoke-discover-services.md b/daprdocs/content/en/developing-applications/building-blocks/service-invocation/howto-invoke-discover-services.md index ea3ae05d5..571f49c2f 100644 --- a/daprdocs/content/en/developing-applications/building-blocks/service-invocation/howto-invoke-discover-services.md +++ b/daprdocs/content/en/developing-applications/building-blocks/service-invocation/howto-invoke-discover-services.md @@ -18,13 +18,13 @@ Dapr allows you to assign a global, unique ID for your app. This ID encapsulates In self hosted mode, set the `--app-id` flag: ```bash -dapr run --app-id cart --app-port 5000 python app.py +dapr run --app-id cart --dapr-http-port 3500 --app-port 5000 python app.py ``` If your app uses an SSL connection, you can tell Dapr to invoke your app over an insecure SSL connection: ```bash -dapr run --app-id cart --app-port 5000 --app-ssl python app.py +dapr run --app-id cart --dapr-http-port 3500 --app-port 5000 --app-ssl python app.py ``` {{% /codetab %}}