From 3ee16b5439837f6bb03052a7d57edd8bc67db7d7 Mon Sep 17 00:00:00 2001 From: Balaji Varadarajan Date: Fri, 13 Sep 2019 10:00:16 -0700 Subject: [PATCH] [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 ebff49232..5e9b6ba5b 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 fee3c8c51..a0b242a76 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 c55ea53d4..48d62f73a 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}