You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by le...@apache.org on 2020/04/01 14:20:04 UTC

[incubator-hudi] branch master updated: [HUDI-749] Fix hudi-timeline-server-bundle run_server.sh start error (#1477)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 2a611f4  [HUDI-749] Fix hudi-timeline-server-bundle run_server.sh start error (#1477)
2a611f4 is described below

commit 2a611f4ad3816b67b54e0fcd1ef588668fba0732
Author: Trevor <33...@users.noreply.github.com>
AuthorDate: Wed Apr 1 22:19:54 2020 +0800

    [HUDI-749] Fix hudi-timeline-server-bundle run_server.sh start error (#1477)
---
 packaging/hudi-timeline-server-bundle/run_server.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packaging/hudi-timeline-server-bundle/run_server.sh b/packaging/hudi-timeline-server-bundle/run_server.sh
index 487cbb5..479eda1 100755
--- a/packaging/hudi-timeline-server-bundle/run_server.sh
+++ b/packaging/hudi-timeline-server-bundle/run_server.sh
@@ -18,7 +18,7 @@
 
 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
 #Ensure we pick the right jar even for hive11 builds
-HOODIE_JAR=`ls -c $DIR/target/hudi-timeline-server-bundle-*.jar | grep -v test | head -1`
+HOODIE_JAR=`ls -c $DIR/target/hudi-timeline-server-bundle-*.jar | grep -v test | grep -v source | head -1`
 
 if [ -z "$HADOOP_HOME" ]; then
   echo "HADOOP_HOME not set. It must be set"