Arnout Engelen

Results 416 issues of Arnout Engelen

This method doesn't seem to show up in `javap`, so it looks like a bug in genjavadoc that this now shows up? _Originally posted by @raboof in https://github.com/lightbend/genjavadoc/pull/313#discussion_r892010275_

bug

https://github.com/GeTOUO/genjavadoc-error-demo at 3c6d2fae3229ca7b84fc21345e8dd6241b27a1d2 ``` /** * test model * @param field some field des */ case class ScalaModel(field: String) ``` produced alongside the `ScalaModel` also a `ScalaModel$`: ``` public class...

bug

When a method is defined in a trait (i.e. `TraitWithMethod`), and that trait is mixed into an object (i.e. `MethodFromTrait`: ``` trait TraitWithMethod { def theMethod(): Int = 42 }...

Currently, the README just refers to COPYING for licensing information, but COPYING just contains the GPLv3, and doesn't specify whether redistribution under later versions of the GPL is also allowed....

Since `ctx.ask` expects a scheduler to be available, using `ctx.ask` in `BehaviorTestKit` currently fails because the `ActorSystemStub` it uses does not have a scheduler. It's not quite clear what the...

1 - triaged
t:testing
t:typed

### Short description When your `GrpcClientSettings` specifies both an `sslContext` and a `trustManager`, Akka gRPC will use the `sslContext` to create the TLS connection and ignore the `trustManager`. This might...

client

Based on #1540 - see discussion there

We're not in a hurry, but filing this issue to track our thinking around it. It looks like downstream projects can use slf4j 2.0.0 just fine even if we're still...

enhancement

On the Akka HTTP interop page, it would be good to also give an example of a route serving multiple services (by first combining them into one service and then...

docs

The exception handler can currently be customized by passing in a `Throwable => Trailers` function. It might be helpful to wrap this in a type alias for Scala users to...