Github user mal commented on the issue:
https://github.com/apache/storm/pull/2083
Not sure how serious this is considered, but I figured I'd raise it for
discussion just in case:
> if the value is a string, split it by space and return the resulting list
Does this not risk breaking backwards compat in cases where the current
value is a string containing arguments with spaces?
```java
// i.e.
-foo "hello world" => ["-foo", "\"hello", "world\""]
// or a more contrived example
-padding " " => ["-padding", "\"", "\""]
```
Perhaps there's an existing CLI parser better suited to handling the
conversion to `List<String>`?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---