Skip to content

Commit e55afac

Browse files
committed
Capitalize
Signed-off-by: Anuraag Agrawal <[email protected]>
1 parent a9cc025 commit e55afac

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/grpc-compatibility.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Connect-Python currently does not support the gRPC protocol due to lack of support for HTTP/2 trailers
44
in the Python ecosystem. If you have an existing codebase using grpc-python and want to introduce Connect
55
in a transition without downtime, you will need a way for the gRPC servers to be accessible from both
6-
gRPC and Connect clients at the same time. envoy is a widely used proxy server with support for translating
6+
gRPC and Connect clients at the same time. Envoy is a widely used proxy server with support for translating
77
the Connect protocol to gRPC via the [Connect-gRPC Bridge](https://www.envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/connect_grpc_bridge_filter).
88

99
For example, if you have a gRPC server currently listening on port 8080, you update it to use port 8081
@@ -66,18 +66,18 @@ static_resources:
6666
max_concurrent_streams: 100
6767
```
6868
69-
Refer to [envoy docs](https://www.envoyproxy.io/docs/envoy/latest/intro/arch_overview/security/ssl) for more configuration such
69+
Refer to [Envoy docs](https://www.envoyproxy.io/docs/envoy/latest/intro/arch_overview/security/ssl) for more configuration such
7070
as TLS.
7171
7272
## Migration
7373
74-
Migrating from grpc-python to Connect using envoy largely involves first adding envoy in front of the server,
75-
then migrating clients to Connect, and finally migrating servers to Connect and removing envoy.
74+
Migrating from grpc-python to Connect using Envoy largely involves first adding Envoy in front of the server,
75+
then migrating clients to Connect, and finally migrating servers to Connect and removing Envoy.
7676
7777
The general code structure of grpc-python and Connect are very similar - if your code is configured to use a
7878
type checker, any changes to parameter names and such should be quite easy to spot.
7979
80-
1. Reconfigure your gRPC servers to include envoy in front of the server port with a config similar to above.
80+
1. Reconfigure your gRPC servers to include Envoy in front of the server port with a config similar to above.
8181
For cloud deployments, this often means using functionality for sidecar containers.
8282
8383
1. Begin generating code with `protoc-gen-connect-python`.
@@ -94,5 +94,5 @@ type checker, any changes to parameter names and such should be quite easy to sp
9494
to have type checking find differences in method names. Change uses of `abort` to directly `raise ConnectError` -
9595
for Connect services, it will be uncommon to pass the `RequestContext` into business logic code.
9696

97-
1. Reconfigure server deployment to remove the envoy proxy and deploy. You're done! You can stop generating code with
97+
1. Reconfigure server deployment to remove the Envoy proxy and deploy. You're done! You can stop generating code with
9898
gRPC.

0 commit comments

Comments
 (0)