Arnout Engelen

Results 692 comments of Arnout Engelen

> Netty provides this ability with their own `SslContextBuilder` for both client and server sides. Ah OK. We do have a `channelBuilderOverrides` 'escape hatch' for Netty-specific customizations, but it looks...

Thanks for the ping! Indeed this is tricky: the latest `protoc-jar` (3.11.4) only embeds versions up to 3.11.4, and we're on 3.19.3, so indeed it'd try and download that version....

I don't think we _need_ to use it - AFAIK the server side only uses `io.grpc.Status` and that's just for convenience. While it might not be a big deal (as...

Yes, I think that `com.google.auth` library is a strong indicator it makes sense to have support for some `grpc-core` concepts built-in. I agree `CallOptions` seems to contain a lot of...

Replacing `GrpcServiceException` with the grpc-core `StatusException` sounds reasonable to me, unless we encounter any unintended consequences when implementing it. Should we make a separate issue out of this, or is...

> I think it would be nice if it was possible for the server to be able to actually configure what it wanted to support without having to essentially intercept...

Thanks for the report! If you don't mind I'd like to keep this issue open, since indeed I see the same issue with https://github.com/akka/akka-grpc-quickstart-scala.g8 , and we do want that...

Looks like this is indeed a change in behavior in `sbt` that might go away again in the future, tracked in https://github.com/sbt/sbt/issues/6767 .

As an alternative to downgrading sbt, I can recommend using https://github.com/spray/sbt-revolver/ and starting your application from the sbt console. Perhaps we should consider recommending this in our docs as well?

Ah, or you could set `fork := true`, no further changes necessary