I'm not sure in this. So in case of two properties (k1=v1 and k2=v2) do you
generate the `--consumer-property k1=v1 --consumer-property k2=v2` string? The
repeated property didn't work when I tried it out and it only picked up the
first one.
I think you need to pass `--consumer-property "k1=v1,k2=v2"` as with some other
commands.
In case the "k1=v1,k2=v2" format is needed, there is a nice one-liner way to do
it:
```
','.join("%s=%r" % (key,val) for (key,val) in k.iteritems())
```
[ Full content available at: https://github.com/apache/kafka/pull/5660 ]
This message was relayed via gitbox.apache.org for [email protected]