You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by GitBox <gi...@apache.org> on 2022/06/17 14:44:34 UTC

[GitHub] [camel-quarkus] jamesnetherton opened a new issue, #3856: Bean introspection on `@Singleton` scoped beans does not work

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: commits-unsubscribe@camel.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [camel-quarkus] jamesnetherton commented on issue #3856: Bean introspection on `@Singleton` scoped beans does not work

Posted by GitBox <gi...@apache.org>.
jamesnetherton commented on issue #3856:
URL: https://github.com/apache/camel-quarkus/issues/3856#issuecomment-1161439111

   Fixed here: https://issues.apache.org/jira/browse/CAMEL-18211.
   
   I will craft a test to very it after we upgrade to 3.18.0.


-- 
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: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [camel-quarkus] jamesnetherton closed issue #3856: Bean introspection on `@Singleton` scoped beans does not work

Posted by GitBox <gi...@apache.org>.
jamesnetherton closed issue #3856: Bean introspection on `@Singleton` scoped beans does not work 
URL: https://github.com/apache/camel-quarkus/issues/3856


-- 
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: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org