From f6529a5f67e7854f3b86f5d6265693ef3b809da7 Mon Sep 17 00:00:00 2001 From: Vadim Ogievetsky Date: Mon, 12 Dec 2022 15:31:07 -0800 Subject: [PATCH 1/2] add ZK into default list --- examples/bin/start-druid | 1 + examples/bin/start-druid-main.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/bin/start-druid b/examples/bin/start-druid index 81d8938adbb2..e41da8d0d308 100755 --- a/examples/bin/start-druid +++ b/examples/bin/start-druid @@ -32,4 +32,5 @@ then exec python "$WHEREAMI/start-druid-main.py" "$@" else echo "python interepreter not found" + echo "" fi diff --git a/examples/bin/start-druid-main.py b/examples/bin/start-druid-main.py index 844933b830f6..1541a1f2ab2c 100644 --- a/examples/bin/start-druid-main.py +++ b/examples/bin/start-druid-main.py @@ -57,7 +57,8 @@ ROUTER, COORDINATOR, HISTORICAL, - MIDDLE_MANAGER + MIDDLE_MANAGER, + ZK ] SUPPORTED_SERVICES = [ From 8cff0d58ec5e3b18a5d6cfefb030f64b7b2e78ff Mon Sep 17 00:00:00 2001 From: Vadim Ogievetsky Date: Mon, 12 Dec 2022 15:34:38 -0800 Subject: [PATCH 2/2] message --- examples/bin/start-druid | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/bin/start-druid b/examples/bin/start-druid index e41da8d0d308..5c866d40f66c 100755 --- a/examples/bin/start-druid +++ b/examples/bin/start-druid @@ -33,4 +33,6 @@ then else echo "python interepreter not found" echo "" + echo "For more information on installing Python visit:" + echo "https://druid.apache.org/docs/latest/operations/python.html" fi