LeonYoah commented on code in PR #9800:
URL: https://github.com/apache/seatunnel/pull/9800#discussion_r2312221535
##########
seatunnel-core/seatunnel-core-starter/src/main/java/org/apache/seatunnel/core/starter/utils/ConfigBuilder.java:
##########
@@ -266,6 +266,9 @@ private static List<?> processVariablesList(List<?> list) {
System.getProperty(placeholder),
null);
});
+ } else if (variable instanceof Map) {
Review Comment:
I indeed never expected a scenario where a list is nested within another
list. If such a case exists, I think I could add another `if (variable
instanceof List)` to recursively call itself
--
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]