summaryrefslogtreecommitdiff
path: root/taskflow/examples
diff options
context:
space:
mode:
authorJoshua Harlow <harlowja@gmail.com>2015-08-13 21:34:20 -0700
committerJoshua Harlow <harlowja@gmail.com>2015-08-22 07:46:42 -0700
commitbedd23882f38b78c735b1f7dcb881b427f33e8f7 (patch)
tree1cb8bda476504445e95ecf2ab946a66ccca4457e /taskflow/examples
parent42837b0dfa840fc73380a1c86bf639ffe4c2d313 (diff)
downloadtaskflow-bedd23882f38b78c735b1f7dcb881b427f33e8f7.tar.gz
Avoid running this example if zookeeper is not found
Change-Id: I4461dcbfc28bed839deeb4e4564daa07c55b42b0
Diffstat (limited to 'taskflow/examples')
-rw-r--r--taskflow/examples/99_bottles.py23
1 files changed, 21 insertions, 2 deletions
diff --git a/taskflow/examples/99_bottles.py b/taskflow/examples/99_bottles.py
index 983bc20..328d6fd 100644
--- a/taskflow/examples/99_bottles.py
+++ b/taskflow/examples/99_bottles.py
@@ -20,6 +20,9 @@ import logging
import os
import sys
import time
+import traceback
+
+from kazoo import client
top_dir = os.path.abspath(os.path.join(os.path.dirname(__file__),
os.pardir,
@@ -201,14 +204,30 @@ def main_local():
run_conductor(only_run_once=True)
+def check_for_zookeeper(timeout=1):
+ sys.stderr.write("Testing for the existence of a zookeeper server...\n")
+ sys.stderr.write("Please wait....\n")
+ with contextlib.closing(client.KazooClient()) as test_client:
+ try:
+ test_client.start(timeout=timeout)
+ except test_client.handler.timeout_exception:
+ sys.stderr.write("Zookeeper is needed for running this example!\n")
+ traceback.print_exc()
+ return False
+ else:
+ test_client.stop()
+ return True
+
+
def main():
+ logging.basicConfig(level=logging.ERROR)
+ if not check_for_zookeeper():
+ return
if len(sys.argv) == 1:
main_local()
elif sys.argv[1] in ('p', 'c'):
if sys.argv[-1] == "v":
logging.basicConfig(level=5)
- else:
- logging.basicConfig(level=logging.ERROR)
if sys.argv[1] == 'p':
run_poster()
else: