jamesnetherton opened a new issue, #3856:
URL: https://github.com/apache/camel-quarkus/issues/3856
Seems #3682 is only partially fixed. The following example does not work and
fails with:
```
org.apache.camel.component.bean.AmbiguousMethodCallException
```
```java
@Singleton
@Named("greeting")
public class GreetingBean {
public String greet() {
return "Hello World!";
}
}
public class Routes extends RouteBuilder {
@Override
public void configure() {
from("timer:greet?period=1s")
.bean("greeting", "greet");
}
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]