Repository: flink Updated Branches: refs/heads/release-1.4 13631b961 -> 3b58038d6
[hotfix] Always explicitly set hadoop.version in create_binary_release Before, the "hadoop2" profile would create a binary release for whatever happens to be the default hadoop.version. Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/3b58038d Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/3b58038d Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/3b58038d Branch: refs/heads/release-1.4 Commit: 3b58038d65cabdfd9da16150d4328227ca6afba1 Parents: 13631b9 Author: Aljoscha Krettek <[email protected]> Authored: Mon Nov 20 18:06:11 2017 +0100 Committer: Aljoscha Krettek <[email protected]> Committed: Thu Nov 23 18:09:26 2017 +0100 ---------------------------------------------------------------------- tools/releasing/create_binary_release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/3b58038d/tools/releasing/create_binary_release.sh ---------------------------------------------------------------------- diff --git a/tools/releasing/create_binary_release.sh b/tools/releasing/create_binary_release.sh index 42b5a8e..3b1508e 100755 --- a/tools/releasing/create_binary_release.sh +++ b/tools/releasing/create_binary_release.sh @@ -78,7 +78,7 @@ cd .. if [ "$SCALA_VERSION" == "none" ] && [ "$HADOOP_VERSION" == "none" ]; then - make_binary_release "hadoop2" "" "2.11" + make_binary_release "hadoop24" "-Dhadoop.version=2.4.1" "2.11" make_binary_release "hadoop26" "-Dhadoop.version=2.6.5" "2.11" make_binary_release "hadoop27" "-Dhadoop.version=2.7.3" "2.11" make_binary_release "hadoop28" "-Dhadoop.version=2.8.0" "2.11" @@ -87,7 +87,7 @@ then make_binary_release "hadoop2" "-Dhadoop.version=$HADOOP_VERSION" "2.11" elif [ "$SCALA_VERSION" != none ] && [ "$HADOOP_VERSION" == "none" ] then - make_binary_release "hadoop2" "" "$SCALA_VERSION" + make_binary_release "hadoop24" "-Dhadoop.version=2.4.1" "$SCALA_VERSION" make_binary_release "hadoop26" "-Dhadoop.version=2.6.5" "$SCALA_VERSION" make_binary_release "hadoop27" "-Dhadoop.version=2.7.3" "$SCALA_VERSION" make_binary_release "hadoop28" "-Dhadoop.version=2.8.0" "$SCALA_VERSION"
