- Notifications
You must be signed in to change notification settings - Fork 2.9k
Closed
Labels
type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.Error or flaw in code with unintended results or allowing sub-optimal usage patterns.
Description
userpc:grpc username$ bin/speech-sample-async.sh --host=speech.googleapis.com --port=443 \ > --uri=resources/audio.raw --sampling=16000 Exception in thread "main" java.lang.NoSuchMethodError: io.grpc.netty.NettyChannelBuilder.maxInboundMessageSize()I at io.grpc.netty.NettyChannelBuilder.buildTransportFactory(NettyChannelBuilder.java:274) at io.grpc.internal.AbstractManagedChannelImplBuilder.build(AbstractManagedChannelImplBuilder.java:239) at io.grpc.internal.AbstractManagedChannelImplBuilder.build(AbstractManagedChannelImplBuilder.java:69) at com.examples.cloud.speech.AsyncRecognizeClient.createChannel(AsyncRecognizeClient.java:90) at com.examples.cloud.speech.AsyncRecognizeClient.main(AsyncRecognizeClient.java:229) In which file did you encounter the issue?
git/java-docs-samples/speech/grpc/pom.xml Did you change the file? If so, how?
userpc:grpc username$ git diff diff --git a/speech/grpc/pom.xml b/speech/grpc/pom.xml index 21b508a..70c1507 100644 --- a/speech/grpc/pom.xml +++ b/speech/grpc/pom.xml @@ -49,7 +49,7 @@ limitations under the License. <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <codehaus-versions-maven-plugin-version>2.3</codehaus-versions-maven-plugin-version> - <grpc-version>1.2.0</grpc-version> <!-- 1.1.2 doesn't work - DO NOT UPGRADE --> + <grpc-version>1.0.3</grpc-version> <!-- 1.1.2 doesn't work - DO NOT UPGRADE --> <maven-compiler-plugin-version>3.6.0</maven-compiler-plugin-version> <xolstice-protobuf-maven-plugin-version>0.5.0</xolstice-protobuf-maven-plugin-version> Describe the issue
There are issues finding Netty in the latest grpc version bump.
Metadata
Metadata
Labels
type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.Error or flaw in code with unintended results or allowing sub-optimal usage patterns.