This is an automated email from the ASF dual-hosted git repository.

mmerli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new 6aaf613  Fix pulsar sql cli bug (#2469)
6aaf613 is described below

commit 6aaf613e9b94e97041ea0c731b0d9d70d875f755
Author: Boyang Jerry Peng <jerry.boyang.p...@gmail.com>
AuthorDate: Tue Aug 28 16:39:39 2018 -0700

    Fix pulsar sql cli bug (#2469)
---
 bin/pulsar | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/pulsar b/bin/pulsar
index 5d731ed..80f2d3d 100755
--- a/bin/pulsar
+++ b/bin/pulsar
@@ -318,7 +318,7 @@ elif [ $COMMAND == "zookeeper-shell" ]; then
     exec $JAVA $OPTS org.apache.zookeeper.ZooKeeperMain $@
 elif [ $COMMAND == "compact-topic" ]; then
     exec $JAVA $OPTS org.apache.pulsar.compaction.CompactorTool --broker-conf 
$PULSAR_BROKER_CONF $@
-elif [ $COMMAND == "sql-cli" ]; then
+elif [ $COMMAND == "sql" ]; then
     exec $JAVA -cp "${PRESTO_HOME}/lib/*" com.facebook.presto.cli.Presto 
--server localhost:8081 $@
 elif [ $COMMAND == "sql-worker" ]; then
     exec ${PRESTO_HOME}/bin/launcher --etc-dir ${PULSAR_PRESTO_CONF} run $@

Reply via email to