After upgrading to 4.2.0 I get strange errors in some of my GRPC tests #10150
-
Hi all. After upgrading to 4.2.0 I get strange errors in some my tests of GRPC services (see below). It seems to fix it in some cases, but not all, if I add this dependency:
Anyone know what change in 4.2.0 might have caused this? It worked fine before...
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
We hade the same exception with GRPC after upgrading. The issue was reltaed to: Note: |
Beta Was this translation helpful? Give feedback.
-
We released a version of Micronaut gRPC which includes the updated gRPC Java client. It will be released in Micronaut Framework 4.2.1 BOM which we aim to release on Monday. |
Beta Was this translation helpful? Give feedback.
-
Thanks, @sdelamo |
Beta Was this translation helpful? Give feedback.
We hade the same exception with GRPC after upgrading. The issue was reltaed to:
grpc/grpc-java#10663
Note:
adding
api("io.grpc:grpc-services:1.59.1")
was not enough. I needed also add
api("io.grpc:grpc-netty:1.59.1")
because by default 1.59.0 version of grpc-netty was included.