Arnout Engelen
Arnout Engelen
We're currently on Scala 2.12.11 because of scala/bug#12336 . Let's update when 2.12.14 comes out (which seems soon)
We make sure in the CI configuration to build with jdk8, but it would be safer to specify this in the build (javacOptions/scalacOptions) explicitly.
Right now, when the underlying persistent Akka HTTP connection fails, the gRPC client does not yet reflect this failure. This is not entirely trivial, since we will have to make...
When code is generated with one version of akka-grpc, and then the project is switched to another version, an explicit 'sbt clean' is needed to cause sbt to regenerate the...
This is forced by the signature of the API, but perhaps we can avoid it or mitigate any negative effects of blocking here
The preliminary Akka HTTP client implementation currently creates a single connection when the client is created. Eventually the client should support load-balancing over multiple discovered endpoints. Some interesting input in...
Currently, interop tests are ran twice: once conveniently in the akka-grpc-interop-tests subproject (based on the `ReflectiveCodeGen`), and once with the 'real' sbt plugin in a scripted test. The the infrastructure...
When using the Akka HTTP client, when a server sends a non-gRPC HTTP/2 response, we may produce the following error: ``` Caused by: io.grpc.StatusException: INTERNAL: Compressed-Flag bit is set, but...
The `cancel_after_first_response` interop test scenario is not yet implemented for Akka clients (AkkaGrpcScalaClientTester/AkkaGrpcJavaClientTester)
The `timeout_on_sleeping_server` interop test scenario is not yet implemented for Akka clients (AkkaGrpcScalaClientTester/AkkaGrpcJavaClientTester)