Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support persistent watches #89

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# make file to hold the logic of build and test setup
ZK_VERSION ?= 3.5.6
ZK_VERSION ?= 3.6.3

# Apache changed the name of the archive in version 3.5.x and seperated out
# src and binary packages
Expand All @@ -20,10 +20,12 @@ $(ZK):
tar -zxf $(ZK).tar.gz
rm $(ZK).tar.gz

.PHONY: zookeeper
zookeeper: $(ZK)
# we link to a standard directory path so then the tests dont need to find based on version
# in the test code. this allows backward compatable testing.
ln -s $(ZK) zookeeper
rm -f $@
ln -s $(ZK) $@

.PHONY: setup
setup: zookeeper
Expand Down
Loading