Github user ptgoetz commented on the issue:
https://github.com/apache/storm/pull/2409
@roshannaik See latest commit. I merged/fixed your patch.
Most of the issues were typos (e.g. "refList" != "reflist"). The other
issue was that properties in flux do not (currently) support ref lists.
However, you can work around it by invoking the setter as a config method:
```yaml
configMethods:
- name: "setTimeLenArr"
args:
- reflist: ["time1", "time2"]
```
We can probably handle property ref list support as a separate issue since
there is a fairly easy workaround.
---