You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: daprdocs/content/en/developing-applications/integrations/gRPC-integration.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -214,17 +214,17 @@ func main() {
214
214
}
215
215
```
216
216
217
-
This creates a gRPC server for your app on port 4000.
217
+
This creates a gRPC server for your app on port 50001.
218
218
219
219
4. Run your app
220
220
221
221
To run locally, use the Dapr CLI:
222
222
223
223
```
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
225
225
```
226
226
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.
0 commit comments