removing unused http port

Signed-off-by: Fernando Rocha <fernando@diagrid.io>
This commit is contained in:
Fernando Rocha 2024-07-24 10:05:10 -07:00
parent c9e0515ef2
commit 9d2aec4d49
2 changed files with 1 additions and 2 deletions

View File

@ -102,7 +102,7 @@ dapr stop -f .
1. Open a terminal and run the `job-service` app:
```bash
dapr run --app-id job-service --app-port 6200 --dapr-http-port 6280 --dapr-grpc-port 6281 --app-protocol grpc -- go run .
dapr run --app-id job-service --app-port 6200 --dapr-grpc-port 6281 --app-protocol grpc -- go run .
```
The output should be:

View File

@ -3,7 +3,6 @@ apps:
- appDirPath: ./job-service/
appID: job-service
appPort: 6200
daprHTTPPort: 6280
daprGRPCPort: 6281
appProtocol: grpc
command: ["go", "run", "."]