We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d36e897 commit dafe647Copy full SHA for dafe647
1 file changed
test-proxy/src/main/java/com/google/cloud/bigtable/testproxy/CbtTestProxy.java
@@ -828,6 +828,9 @@ private InstantiatingGrpcChannelProvider getTransportChannel(
828
public ManagedChannelBuilder apply(ManagedChannelBuilder input) {
829
NettyChannelBuilder channelBuilder = (NettyChannelBuilder) input;
830
831
+ // The default replaces long (several KiB) error messages with "http2 exception"
832
+ channelBuilder.maxInboundMetadataSize(Integer.MAX_VALUE);
833
+
834
if (sslContext != null) {
835
channelBuilder.sslContext(sslContext);
836
}
0 commit comments