-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Do not produce Infinispan RemoteCacheManager
if no Infinispan configuration is present
#18232
Comments
we are working now on the extension, I will create a JIRA to address this issue |
@ppalaga would this make the trick? I also upgraded to 12.1.5.Final but it has not landed in central yet |
Peter is on PTO, but it looks ok to me. I can try to test it with camel-quarkus when 12.1.5.Final shows up in central. |
I tested and it didn't quite work. The problem is in
Maybe because the camel component has this dependency. |
@jamesnetherton sorry I missed this comment before. |
We depend on quarkus-infinispan-client in camel-quarkus-infinispan. Camel offers some alternative ways to configure Infinispan client, e.g. users can pass the list of hosts through the Camel route definition - see apache/camel-quarkus#2344 (comment) . If the user does not provide any
quarkus.infinispan.*
config in application.properties, starting the application fails, because quarkus-infinispan-client still produces an improperly configuredRemoteCacheManager
. Thus we'd appreciate if the producer methods inInfinispanClientProducer
could please returnnull
if noquarkus.infinispan.*
config was provided by the end user.cc @jamesnetherton
The text was updated successfully, but these errors were encountered: