Remove app-protocol from gRPC proxying (#2116)

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>
This commit is contained in:
greenie-msft 2022-01-18 16:00:24 -08:00 committed by GitHub
parent 8cb1b64bcd
commit 65bdea43f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ spec:
Run the sidecar and the Go server:
```bash
dapr run --app-id server --app-protocol grpc --app-port 50051 --config config.yaml -- go run main.go
dapr run --app-id server --app-port 50051 --config config.yaml -- go run main.go
```
Using the Dapr CLI, we're assigning a unique id to the app, `server`, using the `--app-id` flag.