You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by cr...@apache.org on 2016/06/09 21:25:00 UTC

incubator-airflow git commit: [AIRFLOW-142] setup_env.sh doesn't download hive tarball if hdp is specified as distro

Repository: incubator-airflow
Updated Branches:
  refs/heads/master 0bd5515a4 -> b7def7f1f


[AIRFLOW-142] setup_env.sh doesn't download hive tarball if hdp is specified as distro

Closes #1518 from sekikn/AIRFLOW-142


Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/b7def7f1
Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/b7def7f1
Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/b7def7f1

Branch: refs/heads/master
Commit: b7def7f1f9a97d584e9076cdad48287e652a2d41
Parents: 0bd5515
Author: Kengo Seki <se...@apache.org>
Authored: Thu Jun 9 14:24:54 2016 -0700
Committer: Chris Riccomini <ch...@wepay.com>
Committed: Thu Jun 9 14:24:54 2016 -0700

----------------------------------------------------------------------
 scripts/ci/setup_env.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/b7def7f1/scripts/ci/setup_env.sh
----------------------------------------------------------------------
diff --git a/scripts/ci/setup_env.sh b/scripts/ci/setup_env.sh
index 1eca814..753b799 100755
--- a/scripts/ci/setup_env.sh
+++ b/scripts/ci/setup_env.sh
@@ -69,7 +69,8 @@ if [ $HADOOP_DISTRO = "cdh" ]; then
     URL="http://archive.cloudera.com/cdh5/cdh/5/hadoop-latest.tar.gz"
     HIVE_URL="http://archive.cloudera.com/cdh5/cdh/5/hive-latest.tar.gz"
 elif [ $HADOOP_DISTRO = "hdp" ]; then
-    URL="http://public-repo-1.hortonworks.com/HDP/centos6/2.x/updates/2.0.6.0/tars/hadoop-2.2.0.2.0.6.0-76.tar.gz"
+    URL="http://public-repo-1.hortonworks.com/HDP/centos6/2.x/updates/2.3.2.0/tars/hadoop-2.7.1.2.3.2.0-2950.tar.gz"
+    HIVE_URL="http://public-repo-1.hortonworks.com/HDP/centos6/2.x/updates/2.3.2.0/tars/apache-hive-1.2.1.2.3.2.0-2950-bin.tar.gz"
 else
     echo "No/bad HADOOP_DISTRO='${HADOOP_DISTRO}' specified" >&2
     exit 1