Skip to content

Commit

Permalink
Bump grpc dependencies to resolve iisues with mac/centos. (#68)
Browse files Browse the repository at this point in the history
Admittedly I didn't do much digging but with a simple MacOS Big Sur /
Centos environment, grpc ran into issues with netty...

IllegalArgumentException: decode only works with an entire header block!
which can be found here:
https://netty.io/4.1/xref/io/netty/handler/codec/http2/HpackDecoder.html#456.

Bumping grpc to latest resolves it.

Co-authored-by: Ian V Koeppe <[email protected]>
  • Loading branch information
ianvkoeppe and ianvkoeppe authored Jan 28, 2021
1 parent 1742452 commit 5216fdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ plugins {
id "java"
id "eclipse"
id "idea"
id "com.google.protobuf" version "0.8.10"
id "com.google.protobuf" version "0.8.14"
id 'com.github.johnrengelman.shadow' version "5.1.0"
id "com.github.ben-manes.versions" version "0.20.0"
id "com.github.breadmoirai.github-release" version "2.2.10"
}

def grpcVersion = '1.22.1'
def grpcVersion = '1.35.0'
// This version must match the protobuf-java version that grpc transitively pulls in
def protobufVersion = '3.6.1'

Expand Down

0 comments on commit 5216fdc

Please sign in to comment.