This is an automated email from the ASF dual-hosted git repository.
roryqi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/uniffle.git
The following commit(s) were added to refs/heads/master by this push:
new 6c00c79e2 [MINOR] fix(docker): Fix hadoop version (#2447)
6c00c79e2 is described below
commit 6c00c79e2542dfba87de0b9be8898d95e458c573
Author: Andras Salamon <[email protected]>
AuthorDate: Sun Apr 20 06:12:39 2025 +0200
[MINOR] fix(docker): Fix hadoop version (#2447)
---
deploy/kubernetes/docker/build.sh | 1 +
1 file changed, 1 insertion(+)
diff --git a/deploy/kubernetes/docker/build.sh
b/deploy/kubernetes/docker/build.sh
index 58478c352..25918ae15 100755
--- a/deploy/kubernetes/docker/build.sh
+++ b/deploy/kubernetes/docker/build.sh
@@ -52,6 +52,7 @@ while (( "$#" )); do
;;
--hadoop-version)
HADOOP_VERSION="$2"
+ HADOOP_SHORT_VERSION=$(echo "$HADOOP_VERSION" | awk -F "." '{print
$1"."$2}')
shift
;;
--author)