From a64c7d8a1ba555a38834ff9bbfd2edbfa9d9d0a4 Mon Sep 17 00:00:00 2001 From: mikeee Date: Mon, 9 Oct 2023 10:46:09 +0100 Subject: [PATCH] fix: replace --app-ssl flag with --app-protocol Signed-off-by: mikeee --- .../building-blocks/pubsub/howto-publish-subscribe.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daprdocs/content/en/developing-applications/building-blocks/pubsub/howto-publish-subscribe.md b/daprdocs/content/en/developing-applications/building-blocks/pubsub/howto-publish-subscribe.md index c3ceb433307..ad0bce8f934 100644 --- a/daprdocs/content/en/developing-applications/building-blocks/pubsub/howto-publish-subscribe.md +++ b/daprdocs/content/en/developing-applications/building-blocks/pubsub/howto-publish-subscribe.md @@ -219,7 +219,7 @@ namespace CheckoutService.controller Navigate to the directory containing the above code, then run the following command to launch both a Dapr sidecar and the subscriber application: ```bash -dapr run --app-id checkout --app-port 6002 --dapr-http-port 3602 --dapr-grpc-port 60002 --app-ssl dotnet run +dapr run --app-id checkout --app-port 6002 --dapr-http-port 3602 --dapr-grpc-port 60002 --app-protocol https dotnet run ``` {{% /codetab %}} @@ -465,7 +465,7 @@ namespace EventService Navigate to the directory containing the above code, then run the following command to launch both a Dapr sidecar and the publisher application: ```bash -dapr run --app-id orderprocessing --app-port 6001 --dapr-http-port 3601 --dapr-grpc-port 60001 --app-ssl dotnet run +dapr run --app-id orderprocessing --app-port 6001 --dapr-http-port 3601 --dapr-grpc-port 60001 --app-protocol https dotnet run ``` {{% /codetab %}}