We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6ecc532 + dafe647 commit 1b9021eCopy full SHA for 1b9021e
1 file changed
test-proxy/src/main/java/com/google/cloud/bigtable/testproxy/CbtTestProxy.java
@@ -778,6 +778,9 @@ private InstantiatingGrpcChannelProvider getTransportChannel(
778
public ManagedChannelBuilder apply(ManagedChannelBuilder input) {
779
NettyChannelBuilder channelBuilder = (NettyChannelBuilder) input;
780
781
+ // The default replaces long (several KiB) error messages with "http2 exception"
782
+ channelBuilder.maxInboundMetadataSize(Integer.MAX_VALUE);
783
+
784
if (sslContext != null) {
785
channelBuilder.sslContext(sslContext);
786
}
0 commit comments