summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2019-06-18 04:37:26 +0000
committerGerrit Code Review <review@openstack.org>2019-06-18 04:37:26 +0000
commit03ec779cdfea76e5d23f997d1679e01ddaad9309 (patch)
tree2c25ef683695fae9269ea04289fe8fc5889f54a4
parente7420afa2f8eb42d17f9af2ad90ed0090a89ed41 (diff)
parent70b03bcf830972050276a7ed80e1205053534c7b (diff)
downloadoslo-messaging-03ec779cdfea76e5d23f997d1679e01ddaad9309.tar.gz
Merge "Download kafka from archive.apache.org"
-rw-r--r--doc/source/admin/kafka.rst2
-rwxr-xr-xsetup-test-env-kafka.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/admin/kafka.rst b/doc/source/admin/kafka.rst
index 3c0505c..3e3de01 100644
--- a/doc/source/admin/kafka.rst
+++ b/doc/source/admin/kafka.rst
@@ -220,7 +220,7 @@ the configuration
::
KAFKA_VERSION=2.0.0
- KAFKA_BASEURL=http://www.apache.org/dist/kafka
+ KAFKA_BASEURL=http://archive.apache.org/dist/kafka
SCALA_VERSION=2.12
SCALA_BASEURL=http://www.scala-lang.org/riles/archive
diff --git a/setup-test-env-kafka.sh b/setup-test-env-kafka.sh
index 98f1d91..40cc35d 100755
--- a/setup-test-env-kafka.sh
+++ b/setup-test-env-kafka.sh
@@ -12,7 +12,7 @@ if [[ -z "$(which kafka-server-start)" ]] && [[ -z $(which kafka-server-start.sh
tarball=kafka_${SCALA_VERSION}-${KAFKA_VERSION}.tgz
- wget http://www.apache.org/dist/kafka/${KAFKA_VERSION}/$tarball -O $DATADIR/$tarball
+ wget http://archive.apache.org/dist/kafka/${KAFKA_VERSION}/$tarball -O $DATADIR/$tarball
tar -xzf $DATADIR/$tarball -C $DATADIR
export PATH=$DATADIR/kafka_${SCALA_VERSION}-${KAFKA_VERSION}/bin:$PATH
fi