Github user revans2 commented on the issue:
https://github.com/apache/storm/pull/2378
The simplest way to know for sure what you are going to get is to run `mvn
dependency:tree`
```
$ mvn dependency:tree | grep zookeeper | sort -u
[INFO] +- org.apache.zookeeper:zookeeper:jar:3.4.6:compile
[INFO] | +- org.apache.zookeeper:zookeeper:jar:3.4.6:compile
[INFO] | +- org.apache.zookeeper:zookeeper:jar:3.4.6:compile
[INFO] | +- org.apache.zookeeper:zookeeper:jar:3.4.6:provided
[INFO] | +- org.apache.zookeeper:zookeeper:jar:3.4.6:test
[INFO] | \- org.apache.zookeeper:zookeeper:jar:3.4.6:compile
[INFO] | | +- org.apache.zookeeper:zookeeper:jar:3.4.6:provided
```
I did a diff of the dependency trees both before and after this patch.
They are identical except for the version of curator has changed.
I am +1 for this change
---