gtully commented on code in PR #4147:
URL: https://github.com/apache/activemq-artemis/pull/4147#discussion_r920150276
##########
artemis-server/src/main/java/org/apache/activemq/artemis/core/config/impl/ConfigurationImpl.java:
##########
@@ -550,6 +550,17 @@ public <T> T convert(Class<T> type, Object value) {
}
}, TransformerConfiguration.class);
+ beanUtils.getConvertUtils().register(new Converter() {
+ @Override
+ public <T> T convert(Class<T> type, Object value) {
+ List convertedValue = new ArrayList<String>();
+ for (String entry : value.toString().split(",")) {
Review Comment:
will peek, it does not look problematic in this use case, but for sure I
don't want to add a new warn
--
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]