This is an automated email from the ASF dual-hosted git repository. stigahuang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/impala.git
commit 5c9b82854a3397572c4adb3c6cebb2e7d1aaad9a Author: Yubi Lee <[email protected]> AuthorDate: Thu Aug 29 08:28:14 2024 +0900 IMPALA-13327: Fix wrong unpack dir name for Apache HBase Due to wrong unpack dir name for Apache HBase, it keeps downloading the same package which already exists Change-Id: I16797cea260c5c6c3c78cf04a5bb6a564ef3504c Reviewed-on: http://gerrit.cloudera.org:8080/21732 Reviewed-by: Impala Public Jenkins <[email protected]> Tested-by: Impala Public Jenkins <[email protected]> --- bin/bootstrap_toolchain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/bootstrap_toolchain.py b/bin/bootstrap_toolchain.py index 950156565..593744abd 100755 --- a/bin/bootstrap_toolchain.py +++ b/bin/bootstrap_toolchain.py @@ -520,7 +520,7 @@ def get_hadoop_downloads(): hbase = ApacheComponent("hbase", component_path_tmpl="${name}/${version}/", archive_basename_tmpl="${name}-${version}-hadoop3-bin", - unpack_directory_tmpl="${name}-${version}") + unpack_directory_tmpl="${name}-${version}-hadoop3") else: hbase = CdpComponent("hbase", archive_basename_tmpl="hbase-${version}-bin",
