Github user revans2 commented on the issue:
https://github.com/apache/storm/pull/2228
@ecararus could you please take a look at
https://github.com/revans2/incubator-storm/commit/0978338c7dd7ec23b035abb5f70ce088064bf60b
A lot of it you can ignore, but I added in a test on top of this patch into
flux-core that shows that `nimbus.seeds` works (if you set it properly in your
properties file).
Specifically the properties file needs to have in it
```
nimbus.seeds: ["HOST"]
```
and not
```
nimbus.seeds: "HOST"
```
When I change it to the latter the test fails with an exception of
```
java.lang.IllegalArgumentException: Field NIMBUS_SEEDS must be an Iterable
but was a class java.lang.String
at
org.apache.storm.validation.ConfigValidationUtils$2.validateField(ConfigValidationUtils.java:125)
at
org.apache.storm.validation.ConfigValidationUtils$NestableFieldValidator.validateField(ConfigValidationUtils.java:48)
at
org.apache.storm.validation.ConfigValidation$ListEntryTypeValidator.validateField(ConfigValidation.java:311)
at
org.apache.storm.validation.ConfigValidation$ListEntryTypeValidator.validateField(ConfigValidation.java:306)
at
org.apache.storm.validation.ConfigValidation.validateField(ConfigValidation.java:697)
at
org.apache.storm.validation.ConfigValidation.validateFields(ConfigValidation.java:750)
at
org.apache.storm.validation.ConfigValidation.validateFields(ConfigValidation.java:711)
at
org.apache.storm.flux.parser.FluxParserTest.testCofigParamListParser(FluxParserTest.java:43)
```
---
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.
---