Re: CSimple NPE with Method reference processor, camel-quarkus 1.5.0

2020-12-29 Thread Claus Ibsen
Hi Yeah can you create a bug at camel-quarkus. Your route does not use csimple at all, so that quarkus builder shouldn't cause that NPE bug. On Mon, Dec 28, 2020 at 9:39 AM Dennis Holunder wrote: > > Hello! > The route below runs into NPE while packaging a project: > @ApplicationScoped > public

CSimple NPE with Method reference processor, camel-quarkus 1.5.0

2020-12-28 Thread Dennis Holunder
Hello! The route below runs into NPE while packaging a project: @ApplicationScoped public class MyRoute extends EndpointRouteBuilder { @Inject MyProcessor myProcessor; @Override public void configure() { from("direct:start").process(myProcessor::process); } @ApplicationScoped