anchialas opened a new issue, #6488:
URL: https://github.com/apache/camel-quarkus/issues/6488
### Bug description
We have multiple Camel-Master Service Providers active in our Quarkus camel
app with
* Quarkus v3.8.6
* Camel-Quarkus v3.8.3
* Camel v4.4.3
Therefore we would like to replace the default SelectSingle selector [1]
with the `SelectByOrder` implementation. For this we use the property
`camel.component.master.service-selector`. Since an instance is expected as the
value, we have also written a simple converter:
```java
@Converter
public class ClusterSelectorConverter {
@Converter
public CamelClusterService.Selector convert(String selectorClass) {
try {
return
(CamelClusterService.Selector)Class.forName(selectorClass).getConstructor().newInstance();
} catch (Exception ex) {
throw new IllegalStateException(ex);
}
}
}
```
This all works, but the auto-configuration mechanism [2] takes effect too
late: the master component has already been initialized with the default
selector [3].
How can the selector be configured “correctly”?
Thank you!
#
[1] org.apache.camel.support.cluster.ClusterServiceSelectors#DEFAULT_SELECTOR
[2] MainHelper.setPropertiesOnTarget:323
[3] MainHelper.setPropertiesOnTarget:303
--
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]