changed http port to grpc port

This commit is contained in:
amulyavarote 2022-01-27 12:46:32 -08:00 committed by Artur Souza
parent 4626f34ab5
commit a55943cd4d
1 changed files with 2 additions and 2 deletions

View File

@ -53,9 +53,9 @@ dapr run --app-id checkout --app-port 6002 --dapr-http-port 3602 --dapr-grpc-por
Python:
dapr run --app-id orderprocessing --app-port 6001 --dapr-http-port 3601 --app-protocol grpc --components-path ../components python3 OrderProcessingService.py
dapr run --app-id orderprocessing --app-port 6001 --dapr-grpc-port 3601 --app-protocol grpc --components-path ../components python3 OrderProcessingService.py
dapr run --app-id checkout --app-port 6002 --dapr-http-port 3602 --app-protocol grpc --components-path ../components python3 CheckoutService.py
dapr run --app-id checkout --app-port 6002--dapr-grpc-port 3602 --app-protocol grpc --components-path ../components python3 CheckoutService.py
GO: