Skip to content

Commit 5d33c61

Browse files
update port to match go code (#3014)
Signed-off-by: Hannah Hunter <[email protected]> Signed-off-by: Hannah Hunter <[email protected]> Co-authored-by: Mark Fussell <[email protected]>
1 parent 4f717d9 commit 5d33c61

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

daprdocs/content/en/developing-applications/integrations/gRPC-integration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -214,17 +214,17 @@ func main() {
214214
}
215215
```
216216

217-
This creates a gRPC server for your app on port 4000.
217+
This creates a gRPC server for your app on port 50001.
218218

219219
4. Run your app
220220

221221
To run locally, use the Dapr CLI:
222222

223223
```
224-
dapr run --app-id goapp --app-port 4000 --app-protocol grpc go run main.go
224+
dapr run --app-id goapp --app-port 50001 --app-protocol grpc go run main.go
225225
```
226226

227-
On Kubernetes, set the required `dapr.io/app-protocol: "grpc"` and `dapr.io/app-port: "4000` annotations in your pod spec template as mentioned above.
227+
On Kubernetes, set the required `dapr.io/app-protocol: "grpc"` and `dapr.io/app-port: "50001` annotations in your pod spec template as mentioned above.
228228

229229
## Other languages
230230

0 commit comments

Comments
 (0)