Skip to content

Commit

Permalink
Updated zookeeper to latest stable (3.3.6)
Browse files Browse the repository at this point in the history
The specified zookeeper version must be available here:
http://www.apache.org/dist/zookeeper/
However 3.3.5 is no longer available from there, which causes a
deployment failure. This problem was [first highlighted by Lorin
Kobashigawa on the storm-user mailing
list](https://groups.google.com/d/msg/storm-user/i0x3WFgW36k/dd5vufPkFj4
J).
  • Loading branch information
lorcan committed Dec 9, 2013
1 parent 70a450e commit fb0d32d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/clj/backtype/storm/crate/zookeeper.clj
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
[session & {:keys [user group version home]
:or {user zookeeper-user
group zookeeper-group
version "3.3.5"}
version "3.3.6"}
:as options}]
(let [url (url version)
home (or home (format "%s-%s" install-path version))]
Expand Down
2 changes: 1 addition & 1 deletion src/clj/backtype/storm/node.clj
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
(server-spec
:extends (base-server-spec)
:phases {:configure (phase-fn
(zookeeper/install :version "3.3.5")
(zookeeper/install :version "3.3.6")
(zookeeper/configure
:clientPort (storm-conf "storm.zookeeper.port")
:maxClientCnxns 0)
Expand Down

0 comments on commit fb0d32d

Please sign in to comment.