You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by vb...@apache.org on 2019/09/13 19:40:36 UTC

[incubator-hudi] branch master updated: [HUDI-250] Ensure Hudi CLI wrapper works with non snapshot jars too. Also Fix bug in cut_release_branch script

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

vbalaji 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 3ee16b5  [HUDI-250]  Ensure Hudi CLI wrapper works with non snapshot jars too. Also Fix bug in cut_release_branch script
3ee16b5 is described below

commit 3ee16b5439837f6bb03052a7d57edd8bc67db7d7
Author: Balaji Varadarajan <va...@uber.com>
AuthorDate: Fri Sep 13 10:00:16 2019 -0700

    [HUDI-250]  Ensure Hudi CLI wrapper works with non snapshot jars too. Also Fix bug in cut_release_branch script
---
 RELEASE_NOTES.md                      | 4 ++--
 hudi-cli/hudi-cli.sh                  | 2 +-
 release/scripts/cut_release_branch.sh | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index ebff492..5e9b6ba 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -7,9 +7,9 @@ Release 0.5.0-incubating
  * Complete Redo of Hudi Jar bundling
  * Bug fixes in query side integration, DeltaStreamer, compaction, rollbacks, restore
 
-
 ### Full PR List
-
+  * **Balaji Varadarajan** [HUDI-250] Ensure Hudi CLI wrapper works with non snapshot jars too
+  * **Nishith Agarwal** [HUDI-235] Fix scheduled compaction rollback in restore command
   * **Balaji Varadarajan** [HUDI-249] Update Release-notes. Add sign-artifacts to POM and release related scripts. Add missing license headers
   * **yanghua** [HUDI-217] Provide a unified resource management class to standardize the resource allocation and release for hudi client test cases
   * **Bhavani Sudha Saktheeswaran** [HUDI-164] Fixes incorrect averageBytesPerRecord
diff --git a/hudi-cli/hudi-cli.sh b/hudi-cli/hudi-cli.sh
index fee3c8c..a0b242a 100755
--- a/hudi-cli/hudi-cli.sh
+++ b/hudi-cli/hudi-cli.sh
@@ -19,7 +19,7 @@
 ################################################################################
 
 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
-HOODIE_JAR=`ls $DIR/target/hudi-cli-*-SNAPSHOT.jar | grep -v source | grep -v javadoc`
+HOODIE_JAR=`ls $DIR/target/hudi-cli-*.jar | grep -v source | grep -v javadoc`
 if [ -z "$HADOOP_CONF_DIR" ]; then
   echo "setting hadoop conf dir"
   HADOOP_CONF_DIR="/etc/hadoop/conf"
diff --git a/release/scripts/cut_release_branch.sh b/release/scripts/cut_release_branch.sh
index c55ea53..48d62f7 100755
--- a/release/scripts/cut_release_branch.sh
+++ b/release/scripts/cut_release_branch.sh
@@ -58,7 +58,7 @@ fi
 
 MASTER_BRANCH=master
 RELEASE_BRANCH=release-${RELEASE}
-GITHUB_REPO_URL=https://gitbox.apache.org/repos/asf/incubator-hudi.git
+GITHUB_REPO_URL=git@github.com:apache/incubator-hudi.git
 HUDI_ROOT_DIR=incubator-hudi
 LOCAL_CLONE_DIR=hudi_release_${RELEASE}