From 5c214b460dffe86aeadb0b54304b32add6c4c0f4 Mon Sep 17 00:00:00 2001 From: Menghan Li Date: Tue, 12 Mar 2019 15:51:03 -0700 Subject: [PATCH] Update limitations for gRPC clients cc @dfawley --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c4191b7..c736833 100644 --- a/README.md +++ b/README.md @@ -68,9 +68,9 @@ when it's accepted. For example, one connection can be either gRPC or REST, but not both. That is, we assume that a client connection is either used for gRPC or REST. -* *Java gRPC Clients*: Java gRPC client blocks until it receives a SETTINGS -frame from the server. If you are using the Java client to connect to a cmux'ed -gRPC server please match with writers: +* *gRPC Clients*: Java gRPC client and Go gRPC client after release 1.18.0 +block until it receives a SETTINGS frame from the server. If you are using the +gRPC client to connect to a cmux'ed gRPC server please match with writers: ```go grpcl := m.MatchWithWriters(cmux.HTTP2MatchHeaderFieldSendSettings("content-type", "application/grpc")) ```